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

Method get

libraries/theme.php:149–152  ·  view source on GitHub ↗

* Theme::get() * * Gets an item from the data array * e.g. $this->theme->get('current_user'); * * @param string $name The value to get * @param bool $default (optional: FALSE) * @return mixed or $default if not found */

($name, $default = FALSE)

Source from the content-addressed store, hash-verified

147 * @return mixed or $default if not found
148 */
149 function get($name, $default = FALSE)
150 {
151 return isset($this->_data[$name]) ? $this->_data[$name] : $default;
152 }
153
154 /**
155 * Theme::set()

Callers 2

index.phpFile · 0.80
index.phpFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected