mirror of
https://github.com/Mibew/mibew.git
synced 2025-04-07 00:30:12 +03:00
parent
0527a9def1
commit
d512573af8
@ -31,8 +31,14 @@ function load_system_configs()
|
|||||||
static $configs = null;
|
static $configs = null;
|
||||||
|
|
||||||
if (is_null($configs)) {
|
if (is_null($configs)) {
|
||||||
$parser = new YamlParser();
|
// Make sure that configuration file exists, otherwise initialize empty config
|
||||||
$configs = $parser->parse(file_get_contents(MIBEW_FS_ROOT . '/configs/config.yml'));
|
if (file_exists(MIBEW_FS_ROOT . '/configs/config.yml')) {
|
||||||
|
$parser = new YamlParser();
|
||||||
|
$configs = $parser->parse(file_get_contents(MIBEW_FS_ROOT . '/configs/config.yml'));
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$configs = array();
|
||||||
|
}
|
||||||
|
|
||||||
// Mailer configs are not necessary and can be omitted but the section
|
// Mailer configs are not necessary and can be omitted but the section
|
||||||
// must exist anyway. Empty statement is used to make sure null, false
|
// must exist anyway. Empty statement is used to make sure null, false
|
||||||
|
Loading…
Reference in New Issue
Block a user