| 3 |
// $Id$ |
// $Id$ |
| 4 |
// --------------------------------------------------------------------------- |
// --------------------------------------------------------------------------- |
| 5 |
// $Log$ |
// $Log$ |
| 6 |
|
// Revision 1.3 2003/02/03 14:41:21 joko |
| 7 |
|
// + get- and set-methods to access configuration variables |
| 8 |
|
// + recursive merging mechanism |
| 9 |
|
// |
| 10 |
// Revision 1.2 2003/02/03 04:59:29 joko |
// Revision 1.2 2003/02/03 04:59:29 joko |
| 11 |
// + fixed: constructor can now get passed variable of *any type* |
// + fixed: constructor can now get passed variable of *any type* |
| 12 |
// |
// |
| 32 |
|
|
| 33 |
*/ |
*/ |
| 34 |
|
|
| 35 |
|
|
| 36 |
class Application_Config { |
class Application_Config { |
| 37 |
|
|
| 38 |
var $_store; |
var $_store; |
| 42 |
//print "initCfg:<br/>" . Dumper($initCfg) . "<hr/>"; |
//print "initCfg:<br/>" . Dumper($initCfg) . "<hr/>"; |
| 43 |
$this->_store = $initCfg; |
$this->_store = $initCfg; |
| 44 |
} |
} |
| 45 |
|
|
| 46 |
|
function merge() { |
| 47 |
|
//$this->_store[run] = array_merge($this->_store['default'], $this->_store['init']); |
| 48 |
|
foreach ($this->_store[_init][configkeys] as $configKey) { |
| 49 |
|
//$this->_store[runtime] = array_merge($this->_store[runtime], $this->_store[$configKey]); |
| 50 |
|
//$this->_store[runtime] = array_merge_recursive($this->_store[runtime], $this->_store[$configKey]); |
| 51 |
|
$this->_store[runtime] = array_join_merge($this->_store[runtime], $this->_store[$configKey]); |
| 52 |
|
} |
| 53 |
|
//print Dumper($this); |
| 54 |
|
} |
| 55 |
|
|
| 56 |
|
function getPart($var = null) { |
| 57 |
|
//$this->merge(); |
| 58 |
|
if ($var) { |
| 59 |
|
return $this->getVar("runtime.$var"); |
| 60 |
|
} else { |
| 61 |
|
return $this->getVar("runtime"); |
| 62 |
|
} |
| 63 |
|
} |
| 64 |
|
|
| 65 |
|
function setVar($var, $val) { |
| 66 |
|
//$this->_store[runtime][$var] = $val; |
| 67 |
|
//$deep = new Data_Deep($this->_store[runtime]); |
| 68 |
|
$deep = new Data_Deep($this->_store); |
| 69 |
|
$deep->set($var, $val); |
| 70 |
|
} |
| 71 |
|
|
| 72 |
|
function getVar($var) { |
| 73 |
|
//$this->_store[runtime][$var] = $val; |
| 74 |
|
//$deep = new Data_Deep($this->_store[runtime]); |
| 75 |
|
$deep = new Data_Deep($this->_store); |
| 76 |
|
return $deep->get($var); |
| 77 |
|
} |
| 78 |
|
|
| 79 |
} |
} |
| 80 |
|
|
| 81 |
?> |
?> |