This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
lnapp/config/debug.php

27 lines
780 B
PHP
Raw Normal View History

2014-08-22 06:50:01 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
2014-09-29 04:47:51 +00:00
* lnApp Configuration - Debug Settings
2014-08-22 06:50:01 +00:00
*
* @package lnApp
* @category Configuration
* @author Deon George
* @copyright (c) 2010-2013 Deon George
* @license http://dev.leenooks.net/license.html
*/
return array
(
'ajax'=>FALSE, // AJAX actions can only be run by ajax calls if set to FALSE
'etag'=>FALSE, // Force generating ETAGS
2014-09-29 04:47:51 +00:00
'method_security'=>FALSE, // Debug Method Security
2014-08-22 06:50:01 +00:00
'site'=>FALSE, // Glogal site debug
2014-09-29 04:47:51 +00:00
'email_bcc_admin'=>array(
// 'deon@leenooks.vpn' => 'Deon George',
), // BCC this person on all emails
'email_admin_only'=>array(
// 'login_reset'=>array('deon@leenooks.vpn'=>'Deon George'),
), // Send emails for this template to just this person
2014-08-22 06:50:01 +00:00
);
?>