コード例 #1
0
ファイル: baseController.php プロジェクト: dariushha/zinux
 /**
  * Dispose the controller
  */
 public function Dispose()
 {
     $this->view->Dispose();
     $this->layout->Dispose();
     parent::Dispose();
 }
コード例 #2
0
ファイル: baseLayout.php プロジェクト: dariushha/zinux
 /**
  * Renders View
  */
 protected function RenderView()
 {
     $this->content = $this->view->Render(0);
 }