Public Member Functions | |
__construct ($config) | |
getConfig ($key='') | |
Protected Attributes | |
$_name = null | |
$_config = array() |
Definition at line 28 of file Abstract.php.
__construct | ( | $ | config | ) |
getConfig | ( | $ | key = '' |
) |
Definition at line 38 of file Abstract.php.
00039 { 00040 if (''===$key) { 00041 return $this->_config; 00042 } elseif (isset($this->_config->$key)) { 00043 return $this->_config->$key; 00044 } else { 00045 return false; 00046 } 00047 }
$_config = array() [protected] |
Definition at line 31 of file Abstract.php.
$_name = null [protected] |
Definition at line 30 of file Abstract.php.