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