getConf
Develop / Core / getConf
Since version 0.1 - 0.4
$this->getConf($args*);
Description
Get the main configuration.Parameters
- string $args*
- Add config options you want as parameters.
Return
array or value of called configuration option.Examples
$ops = $this->getConf(); // will return the complete configuration as multidimensional array
$version = $this->getConf('system', 'version'); // will only return the value for $this->getConf()->system->version.
