* Theme::set_config() * * Sets an item in the config array * e.g. $this->theme->set_config('theme', 'other_theme'); * * @param mixed $name * @param mixed $value * @return void */
($name, $value)
| 132 | * @return void |
| 133 | */ |
| 134 | function set_config($name, $value) |
| 135 | { |
| 136 | $this->_config[$name] = $value; |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * Theme::get() |
no outgoing calls
no test coverage detected