* Theme::config() * * Returns an item from the config array * * @param string $name * @param bool $default (optional: FALSE) * @return mixed or $default if not found */
($name, $default = FALSE)
| 117 | * @return mixed or $default if not found |
| 118 | */ |
| 119 | function config($name, $default = FALSE) |
| 120 | { |
| 121 | return isset($this->_config[$name]) ? $this->_config[$name] : $default; |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * Theme::set_config() |
no outgoing calls
no test coverage detected