Optimization
[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 ( substr( $PHP_SELF, -11 ) <> 'options.php' ) {
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 ( $adm_id = fileowner('../config/config.php') ) {
21 $adm = posix_getpwuid( $adm_id );
22 $auth = ( $username == $adm['name'] );
23 }
24
25 return( $auth );
26
27 }
28
29 ?>