Basic layout and login functioning
This commit is contained in:
@@ -17,5 +17,6 @@ return array(
|
||||
'lifetime' => 1209600,
|
||||
// 'session_key' => 'auth_user',
|
||||
// 'forced_key' => 'auth_forced',
|
||||
'pwreset' => FALSE,
|
||||
);
|
||||
?>
|
||||
|
@@ -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',
|
||||
);
|
||||
?>
|
||||
|
24
application/config/debug.php
Normal file
24
application/config/debug.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php defined('SYSPATH') or die('No direct access allowed.');
|
||||
|
||||
/**
|
||||
* PLA Configuration - Debug Settings
|
||||
*
|
||||
* @package PLA
|
||||
* @subpackage Debug
|
||||
* @category Configuration
|
||||
* @author Deon George
|
||||
* @copyright (c) 2013 phpLDAPadmin Development Team
|
||||
* @license http://dev.phpldapadmin.org/license.html
|
||||
*/
|
||||
|
||||
return array
|
||||
(
|
||||
'ajax'=>FALSE, // AJAX actions can only be run by ajax calls if set to FALSE
|
||||
'etag'=>FALSE, // Force generating ETAGS
|
||||
'checkout_notify'=>FALSE, // Test mode to test a particular checkout_notify item
|
||||
'invoice'=>0, // Number of invoices to generate in a pass
|
||||
'site'=>FALSE, // Glogal site debug
|
||||
'show_inactive'=>FALSE, // Show Inactive Items
|
||||
'task_sim'=>FALSE, // Simulate running tasks
|
||||
);
|
||||
?>
|
23
application/config/userguide.php
Normal file
23
application/config/userguide.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php defined('SYSPATH') or die('No direct script access.');
|
||||
|
||||
return array(
|
||||
// Leave this alone
|
||||
'modules' => array(
|
||||
|
||||
// This should be the path to this modules userguide pages, without the 'guide/'. Ex: '/guide/modulename/' would be 'modulename'
|
||||
'pla' => array(
|
||||
|
||||
// Whether this modules userguide pages should be shown
|
||||
'enabled' => TRUE,
|
||||
|
||||
// The name that should show up on the userguide index page
|
||||
'name' => 'phpLDAPadmin',
|
||||
|
||||
// A short description of this module, shown on the index page
|
||||
'description' => 'phpLDAPadmin API guide.',
|
||||
|
||||
// Copyright message, shown in the footer for this module
|
||||
'copyright' => '© 2008–2010 phpLDAPadmin Developer Team',
|
||||
)
|
||||
)
|
||||
);
|
Reference in New Issue
Block a user