17 lines
242 B
PHP
17 lines
242 B
PHP
<?php
|
|
|
|
class Welcome extends miniMVC {
|
|
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
function index()
|
|
{
|
|
//$this->page->build_header();
|
|
$this->output->append_output($this->__toString());
|
|
//$this->page->build_footer();
|
|
}
|
|
|
|
} |