mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00
16 lines
311 B
PHP
16 lines
311 B
PHP
<?php
|
|
|
|
class Dwoowelcome extends Controller {
|
|
|
|
function __construct()
|
|
{
|
|
parent::Controller();
|
|
}
|
|
|
|
function index()
|
|
{
|
|
$this->load->library('Dwootemplate');
|
|
$this->dwootemplate->assign('itshowlate', date('H:i:s'));
|
|
$this->dwootemplate->display('dwoowelcome.tpl');
|
|
}
|
|
} |