Bugfix
[squirrelmail.git] / plugins / administrator / auth.php
1 <?php
2
3 /*
4 * This function tell other modules what users have access
5 * to the plugin.
6 *
7 * Philippe Mingo
8 *
9 * $Id$
10 */
11 function adm_check_user() {
12
13 GLOBAL $username, $PHP_SELF;
14
15 if ( strpos( 'options.php', $PHP_SELF ) ) {
16 $auth = FALSE;
17 } else if ( file_exists( '../plugins/administrator/admins' ) ) {
18 $auths = file( '../plugins/administrator/admins' );
19 $auth = in_array( "$username\n", $auths );
20 } else if ( file_exists( '../config/admins' ) ) {
21 $auths = file( '../config/admins' );
22 $auth = in_array( "$username\n", $auths );
23 } else if ( $adm_id = fileowner('../config/config.php') ) {
24 $adm = posix_getpwuid( $adm_id );
25 $auth = ( $username == $adm['name'] );
26 }
27
28 return( $auth );
29
30 }
31
32 ?>