source: trunk/Packages/Common/Page.php@ 796

Last change on this file since 796 was 796, checked in by chronos, 9 years ago
  • Fixed: Page javascript script was not loaded.
File size: 559 bytes
Line 
1<?php
2
3class Page extends View
4{
5 var $FullTitle;
6 var $ShortTitle;
7 var $ParentClass;
8 var $ClearPage;
9 var $OnSystemMessage;
10 var $Load;
11 var $Unload;
12
13 function __construct($System)
14 {
15 parent::__construct($System);
16 $this->ClearPage = false;
17 $this->OnSystemMessage = array();
18 }
19
20 function Show()
21 {
22 return('');
23 }
24
25 function GetOutput()
26 {
27 $Output = $this->Show();
28 return($Output);
29 }
30
31 function SystemMessage($Title, $Text)
32 {
33 return(call_user_func_array($this->OnSystemMessage, array($Title, $Text)));
34 }
35}
Note: See TracBrowser for help on using the repository browser.