*/ /** * Another simple example that displays a `Hello World` type message and the current date and time * * Use it to debug your Tina MVC caching issues * * @package Tina-MVC * @author Francis Crossen */ class test_page extends tina_mvc_base_page_class { function __construct( $request ) { parent::__construct( $request ); // we just output the time and date as a sample $out = '
'; $out .= 'This text is generated from the \'test\' controller
'; $out .= tina_mvc_db_time() . '
'; $out .= tina_mvc_db_date(); $out .= '
'; $this->set_post_title('Happy '.date('l')); $this->set_post_content($out); } } ?>