home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / dotproject / functions / admin_func.php next >
PHP Script  |  2002-12-17  |  401b  |  20 lines

  1. <?php
  2. // user types
  3. $utypes = array(
  4. // DEFAULT USER (nothing special)
  5.     0 => '',
  6. // DO NOT CHANGE ADMINISTRATOR INDEX !
  7.     1 => 'Administrator',
  8. // you can modify the terms below to suit your organisation
  9.     2 => 'CEO',
  10.     3 => 'Director',
  11.     4 => 'Branch Manager',
  12.     5 => 'Manager',
  13.     6 => 'Supervisor',
  14.     7 => 'Employee'
  15. );
  16.  
  17. ##
  18. ##    NOTE: the user_type field in the users table must be changed to a TINYINT
  19. ##
  20. ?>