Example #1
0
 public function __destruct()
 {
     //         echo "<pre>";
     //         print_r($this->content);
     //         echo "</pre>";
     die;
     echo View::RenderLayout($this->router, $this->layout, $this->content);
 }
Example #2
0
 /**
  * Error 404 Not Found Page
  */
 public function E404()
 {
     View::render('404');
 }
Example #3
0
 public function __destruct()
 {
     echo View::RenderLayout($this->router, $this->layout, $this->content);
 }