auto_render === TRUE) { // Load the template $this->template = View::factory($this->template); } } /** * Assigns the template [View] as the request response. */ public function after() { if ($this->auto_render === TRUE) { $this->response->body($this->template->render()); } parent::after(); } }