source:
branches/mvc/Application/Controller/Main.php
Last change on this file was 47, checked in by , 10 years ago | |
---|---|
File size: 274 bytes |
Line | |
---|---|
1 | <?php |
2 | |
3 | include_once(dirname(__FILE__).'/../../Base/Controller.php'); |
4 | include_once(dirname(__FILE__).'/../View/Main.php'); |
5 | |
6 | class MainController extends Controller |
7 | { |
8 | function Show() |
9 | { |
10 | $View = new MainView($this->System); |
11 | return($View->Show()); |
12 | } |
13 | } |
Note:
See TracBrowser
for help on using the repository browser.