Changeset 912 for trunk/Packages/Common/Page.php
- Timestamp:
- Aug 3, 2021, 11:38:29 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/Page.php
r888 r912 3 3 class Page extends View 4 4 { 5 public string $ FullTitle;6 public string $ ShortTitle;5 public string $Title; 6 public string $Description; 7 7 public string $ParentClass; 8 public bool $ ClearPage;8 public bool $RawPage; 9 9 public $OnSystemMessage; 10 10 public string $Load; … … 14 14 { 15 15 parent::__construct($System); 16 $this-> ClearPage = false;16 $this->RawPage = false; 17 17 $this->OnSystemMessage = array(); 18 $this-> FullTitle = "";19 $this-> ShortTitle= "";18 $this->Title = ""; 19 $this->Description = ""; 20 20 $this->ParentClass = ""; 21 21 }
Note:
See TracChangeset
for help on using the changeset viewer.