template = $template; $this->data = $this->_ci_object_to_array($data); $this->return = $return; } function view($view, $vars = array() , $return = FALSE) { log_message('debug', 'Using view "themes/' . $this->template . '/views/' . $view . '.php"'); return $this->_ci_load(array( '_ci_view' => '../themes/' . $this->template . '/views/' . $view . '.php', '_ci_vars' => $this->_ci_object_to_array($vars) , '_ci_return' => $return )); } }