예제 #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();
 }