Basic layout and login functioning

This commit is contained in:
Deon George
2012-06-19 12:50:42 +10:00
parent e084621082
commit caf89ff4e5
49 changed files with 571 additions and 697 deletions

View File

@@ -10,15 +10,14 @@
* @copyright (c) phpLDAPadmin Development Team
* @license http://dev.phpldapadmin.org/license.html
*/
return array(
// Our application name, as shown in the title bar of pages
'appname' => 'phpLDAPadmin - LDAP Administration',
'appname' => 'phpLDAPadmin - LDAP Administration', // Our application name, as shown in the title bar of pages
'method_security' => FALSE, // Enables Method Security. Setting to false means any method can be run without authentication
// Our mode level (PRODUCTION, STAGING, TESTING, DEVELOPMENT) - see [Kohana]
'mode' => Kohana::PRODUCTION,
'site' => array(
'name'=>'phpLDAPadmin',
),
// Our custom theme
'theme' => 'original',
'loginpage' => 'welcome',
'theme' => 'claro',
);
?>