00e6507edc1b31fdb2e2aaa577891d4cf74e844d
[speedfreak] / Server / application / controllers / pages.php
1 <?php
2 class Pages_Controller extends Template_Controller {
3
4         public $template = 'pages/base'; //defaults to template but you can set your own view file
5
6         public $auto_render = TRUE; //defaults to true, renders the template after the controller method is done
7
8         public function __construct()
9         {
10                 parent::__construct(); //necessary
11         }
12
13         public function index()
14         {
15                 $this->template->title = 'Maemo application for car enthusiasts';
16                 $this->template->header = 'Home';
17                 $this->template->content = 'HOMEZ';
18         }
19 }