source: branches/0.4/web/addons/job_monarch/dwoo/Dwoo/Adapters/CodeIgniter/controllers/dwoowelcome.php @ 755

Last change on this file since 755 was 755, checked in by ramonb, 11 years ago
  • add Dwoo
File size: 311 bytes
Line 
1<?php
2
3class Dwoowelcome extends Controller {
4
5    function __construct()
6    {
7        parent::Controller();
8    }
9
10    function index()
11    {
12        $this->load->library('Dwootemplate');
13        $this->dwootemplate->assign('itshowlate', date('H:i:s'));
14        $this->dwootemplate->display('dwoowelcome.tpl');
15    }
16}
Note: See TracBrowser for help on using the repository browser.