forked from LimeSurvey/LimeSurvey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setdebug.php
36 lines (33 loc) · 1.45 KB
/
setdebug.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/*
* ------------------------------------------------------------------
* Setup YII_DEBUG constant and error reporting according to config
* ------------------------------------------------------------------
*/
if (!defined('YII_DEBUG')) {
if (file_exists(APPPATH . 'config' . DIRECTORY_SEPARATOR . 'config.php')) {
$settings = include(APPPATH . 'config' . DIRECTORY_SEPARATOR . 'config.php');
} else {
$settings = [];
}
// Set debug : if not set : set to default from PHP 5.3
if (isset($settings['config']['debug'])) {
if ($settings['config']['debug'] > 0) {
define('YII_DEBUG', true);
if ($settings['config']['debug'] > 1) {
error_reporting(E_ALL);
// @see https://www.limesurvey.org/manual/Code_quality_guide#Assertions
// This will not work if the process is started in production mode (see https://www.php.net/manual/en/ini.core.php#ini.zend.assertions)
ini_set('zend.assertions', 1);
} else {
error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED);
}
} else {
define('YII_DEBUG', false);
error_reporting(0);
}
} else {
error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED);// Not needed if user doesn't remove their 'debug'=>0, for application/config/config.php (Installation is OK with E_ALL)
}
unset($settings);
}