page->build_header(); $output = $this->page->set_message('info', "This is just a test message"); $this->page->build_footer(); } /** * welcome/php route * * @return void */ public function php() { ob_start(); phpinfo(); $output = ob_get_contents(); ob_end_clean(); $this->page->set_output($output); } } // End of welcome.php