source: trunk/www/Application/Controller/Debug.php@ 80

Last change on this file since 80 was 80, checked in by george, 16 years ago
  • Opraveno: Chybějící include v souborech.
File size: 551 bytes
Line 
1<?php
2
3include_once(dirname(__FILE__).'/../../Base/Controller.php');
4include_once(dirname(__FILE__).'/../View/Page.php');
5include_once(dirname(__FILE__).'/../View/Debug.php');
6
7class DebugController extends Controller
8{
9 function View()
10 {
11 $Page = new PageView($this->System);
12 $View = new DebugView($this->System);
13 return($Page->GetOutput($View->Item()));
14 }
15
16 function ItemList()
17 {
18 $Page = new PageView($this->System);
19 $View = new DebugView($this->System);
20 return($Page->GetOutput($View->ItemList()));
21 }
22}
23
24?>
Note: See TracBrowser for help on using the repository browser.