mirror of
https://github.com/wheelybird/ldap-user-manager.git
synced 2025-01-18 23:42:54 +01:00
18 lines
455 B
PHP
18 lines
455 B
PHP
<?php
|
|
|
|
#Modules and how they can be accessed.
|
|
|
|
#access:
|
|
#user = need to be logged-in to see it
|
|
#hidden_on_login = only visible when not logged in
|
|
#admin = need to be logged in as an admin to see it
|
|
|
|
$MODULES = array(
|
|
'log_in' => 'hidden_on_login',
|
|
'change_password' => 'auth',
|
|
'account_manager' => 'admin',
|
|
'log_out' => 'auth'
|
|
);
|
|
|
|
?>
|