source: trunk/Module/Main/Controller.php@ 17

Last change on this file since 17 was 17, checked in by george, 15 years ago
File size: 538 bytes
Line 
1<?php
2
3include_once(dirname(__FILE__).'/../../Base/HTML/Controller.php');
4
5class MainController extends Controller
6{
7 function __construct($System)
8 {
9 parent::__construct($System);
10 $this->Name = 'Main';
11 $this->DefaultAction = 'View';
12 $this->ActionMap = array(
13 'View' => 'View',
14 //'Delete' => 'Delete',
15 //'Edit' => 'Edit',
16 //'Add' => 'Add',
17 //'ListPanel' => 'ListPanel',
18 //'List' => 'ItemList',
19 );
20 }
21
22 function View()
23 {
24 $Output = 'Hello';
25 return($Output);
26 }
27}
28
29?>
Note: See TracBrowser for help on using the repository browser.