MCPcopy Index your code
hub / github.com/atomicon/codeigniter-theme / config

Method config

libraries/theme.php:119–122  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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()

Callers 4

set_themeMethod · 0.95
set_layoutMethod · 0.95
renderMethod · 0.95
partialMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected