source:
Application/CustomOutput.php
Last change on this file was 1, checked in by , 15 years ago | |
---|---|
File size: 289 bytes |
Line | |
---|---|
1 | <?php |
2 | |
3 | include_once(dirname(__FILE__).'/../Base/Output.php'); |
4 | |
5 | class 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.