source: Application/CustomOutput.php

Last change on this file was 1, checked in by george, 14 years ago
  • Přidáno: Výchozí verze systému.
File size: 289 bytes
Line 
1<?php
2
3include_once(dirname(__FILE__).'/../Base/Output.php');
4
5class CustomOutput extends Output
6{
7 var $Load = '';
8 var $Unload = '';
9 var $Document;
10 var $Title;
11
12 function Show($Content)
13 {
14 echo($Content);
15 }
16
17 function SystemMessage($Text)
18 {
19 return($Text);
20 }
21}
22
23?>
Note: See TracBrowser for help on using the repository browser.