Conditions | 3 |
Paths | 4 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | public function __construct($name) { |
||
23 | $this->name = $name; |
||
24 | $this->is_set = isset($GLOBALS['conf'][$name]); |
||
25 | if ($this->is_set) { |
||
26 | $this->value = $GLOBALS['conf'][$name]; |
||
27 | } |
||
28 | |||
29 | if (function_exists('variable_get_default')) { |
||
30 | $this->default = variable_get_default($name); |
||
31 | } |
||
42 |