コード例 #1
0
ファイル: User.php プロジェクト: ismaelmelus/home
 public function __destruct()
 {
     //         echo "<pre>";
     //         print_r($this->content);
     //         echo "</pre>";
     die;
     echo View::RenderLayout($this->router, $this->layout, $this->content);
 }
コード例 #2
0
ファイル: HomeController.php プロジェクト: xcytek/pounce
 /**
  * Error 404 Not Found Page
  */
 public function E404()
 {
     View::render('404');
 }
コード例 #3
0
ファイル: User.php プロジェクト: agustincl/zgz2015_m
 public function __destruct()
 {
     echo View::RenderLayout($this->router, $this->layout, $this->content);
 }