source: branches/mvc/Application/Controller/Main.php

Last change on this file was 47, checked in by chronos, 10 years ago
  • Odstraněno: Zbytečná PHP ukončovací značka "?>" z konce všech souborů.
File size: 274 bytes
Line 
1<?php
2
3include_once(dirname(__FILE__).'/../../Base/Controller.php');
4include_once(dirname(__FILE__).'/../View/Main.php');
5
6class 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.