Changeset 887 for trunk/Packages/Common/Page.php
- Timestamp:
- Nov 20, 2020, 12:08:12 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/Page.php
r874 r887 3 3 class Page extends View 4 4 { 5 var$FullTitle;6 var$ShortTitle;7 var$ParentClass;8 var$ClearPage;5 public string $FullTitle; 6 public string $ShortTitle; 7 public string $ParentClass; 8 public bool $ClearPage; 9 9 var $OnSystemMessage; 10 var$Load;11 var$Unload;10 public string $Load; 11 public string $Unload; 12 12 13 function __construct( $System)13 function __construct(System $System) 14 14 { 15 15 parent::__construct($System); 16 16 $this->ClearPage = false; 17 17 $this->OnSystemMessage = array(); 18 $this->FullTitle = ""; 19 $this->ShortTitle = ""; 20 $this->ParentClass = ""; 18 21 } 19 22 20 function Show() 23 function Show(): string 21 24 { 22 25 return ''; 23 26 } 24 27 25 function GetOutput() 28 function GetOutput(): string 26 29 { 27 30 $Output = $this->Show(); … … 29 32 } 30 33 31 function SystemMessage( $Title, $Text)34 function SystemMessage(string $Title, string $Text): string 32 35 { 33 36 return call_user_func_array($this->OnSystemMessage, array($Title, $Text));
Note:
See TracChangeset
for help on using the changeset viewer.