芝麻web文件管理V1.00
编辑当前文件:/home/prismawe/www/resupres/system/classes/kohana/controller/template.php
auto_render === TRUE) { // Load the template $this->template = View::factory($this->template); } return parent::before(); } /** * Assigns the template [View] as the request response. */ public function after() { if ($this->auto_render === TRUE) { $this->response->body($this->template->render()); } return parent::after(); } } // End Controller_Template