-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathConfig.php
More file actions
40 lines (31 loc) · 770 Bytes
/
Copy pathConfig.php
File metadata and controls
40 lines (31 loc) · 770 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
<?php
namespace Dreamcoil;
class Config
{
/**
* Loads the config
*/
public function __construct()
{
global $dreamcoilLoadedConfig;
$dreamcoilLoadedConfig = include __DIR__ . '/../app/_conf.php';
}
/**
* Gets the value for the config key
*
* @param $key
* @return null|string|array|int
*/
public static function get($key)
{
global $dreamcoilLoadedConfig;
if(!isset($dreamcoilLoadedConfig)) {
$file = __DIR__ . '/../app/_conf.php';
$dreamcoilLoadedConfig = include $file;
}
if(isset($dreamcoilLoadedConfig[$key])) {
return $dreamcoilLoadedConfig[$key];
}
return null;
}
}