-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathcnf.cls.php
executable file
·54 lines (45 loc) · 1.32 KB
/
cnf.cls.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
/*
* This file is part of the phpems/phpems.
*
* (c) oiuv <[email protected]>
*
* 项目维护:oiuv(QQ:7300637) | 定制服务:火眼(QQ:278768688)
*
* This source file is subject to the MIT license that is bundled.
*/
class cnf
{
public $G;
public $config = [];
private $table;
public function __construct(&$G)
{
$this->G = $G;
$this->table = DTH.'config';
}
public function getCfgDataByModule($app = 'core')
{
if ((!isset($this->config[$app])) || (!is_array($this->config[$app]))) {
$ca = $this->G->make('ca');
if ($ca->isTimeOut($app, 3600)) {
$sql = 'SELECT * FROM `'.$this->table."` WHERE module = '{$app}'";
$tmp = $this->G->make('db')->fetchAll(1, $sql);
foreach ($tmp as $p) {
$this->config[$app][$p['name']] = $p['value'];
}
$ca->writeCache($app, $this->config[$app]);
} else {
$this->config[$app] = $ca->readCache($app);
}
}
return $this->config[$app];
}
public function getCfgData($parname, $app = 'core')
{
if (!isset($this->config[$app][$parname])) {
$this->getCfgDataByModule($app);
}
return $this->config[$app][$parname];
}
}