20 lines
318 B
PHP
20 lines
318 B
PHP
<?php
|
|
|
|
class Welcome extends MM_Controller {
|
|
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
function index()
|
|
{
|
|
$this->page->build_header();
|
|
|
|
$this->page->set_message('info', "This is just a test message");
|
|
//$this->output->append_output($this->__toString());
|
|
$this->page->build_footer();
|
|
}
|
|
|
|
} |