-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.defaults.php
More file actions
52 lines (40 loc) · 905 Bytes
/
Copy pathconfig.defaults.php
File metadata and controls
52 lines (40 loc) · 905 Bytes
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
// config.defaults.php
// Fallback values to keep constants defined when config.php is missing.
// These are only applied if the constant isn't already defined.
if (!defined('DEBUG')) {
define('DEBUG', false);
}
if (!defined('LANGUAGE')) {
define('LANGUAGE', '');
}
if (!defined('DB_INITIALIZED')) {
define('DB_INITIALIZED', false);
}
if (!defined('BASE_URI')) {
define('BASE_URI', '');
}
if (!defined('DB_SERVER')) {
define('DB_SERVER', '');
}
if (!defined('DB_USERNAME')) {
define('DB_USERNAME', '');
}
if (!defined('DB_PASSWORD')) {
define('DB_PASSWORD', '');
}
if (!defined('DB_NAME')) {
define('DB_NAME', '');
}
if (!defined('SECRET')) {
define('SECRET', '');
}
if (!defined('SMTP_FROM')) {
define('SMTP_FROM', '');
}
if (!defined('SMTP_FROM_NAME')) {
define('SMTP_FROM_NAME', '');
}
if (!defined('FOOTER')) {
define('FOOTER', '');
}