示例#1
0
文件: Core.php 项目: piotrtheis/ko3
 /**
  * Assigns the template [View] as the request response.
  */
 public function after()
 {
     //send request headers
     parent::after();
     if ($this->auto_render === TRUE) {
         $this->template->content = $this->view;
         $this->response->body($this->template->render());
     }
 }
示例#2
0
文件: Api.php 项目: piotrtheis/ko3
 public function after()
 {
     parent::after();
 }