phpldapadmin/application/config/config.php

24 lines
806 B
PHP
Raw Normal View History

2012-06-05 03:50:21 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* PLA Configuration - System Default Configurable Items.
*
* @package PLA
* @subpackage System
* @category Configuration
* @author Deon George
* @copyright (c) phpLDAPadmin Development Team
* @license http://dev.phpldapadmin.org/license.html
*/
2012-06-05 03:50:21 +00:00
2012-06-05 03:50:21 +00:00
return array(
2012-06-05 03:50:21 +00:00
'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
2012-06-05 03:50:21 +00:00
// Our mode level (PRODUCTION, STAGING, TESTING, DEVELOPMENT) - see [Kohana]
'mode' => Kohana::PRODUCTION,
// Our custom theme
2012-06-05 03:50:21 +00:00
'loginpage' => 'welcome',
'theme' => 'claro',
2012-06-05 03:50:21 +00:00
);
?>