24 lines
721 B
PHP
24 lines
721 B
PHP
|
<?php defined('SYSPATH') or die('No direct access allowed.');
|
||
|
|
||
|
/**
|
||
|
* PLA Configuration - Debug Settings
|
||
|
*
|
||
|
* @package PLA
|
||
|
* @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
|
||
|
);
|
||
|
?>
|