Ignore:
Timestamp:
Aug 3, 2021, 11:38:29 AM (3 years ago)
Author:
chronos
Message:
  • Modified: Updated Common package.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Packages/Common/Page.php

    r888 r912  
    33class Page extends View
    44{
    5   public string $FullTitle;
    6   public string $ShortTitle;
     5  public string $Title;
     6  public string $Description;
    77  public string $ParentClass;
    8   public bool $ClearPage;
     8  public bool $RawPage;
    99  public $OnSystemMessage;
    1010  public string $Load;
     
    1414  {
    1515    parent::__construct($System);
    16     $this->ClearPage = false;
     16    $this->RawPage = false;
    1717    $this->OnSystemMessage = array();
    18     $this->FullTitle = "";
    19     $this->ShortTitle = "";
     18    $this->Title = "";
     19    $this->Description = "";
    2020    $this->ParentClass = "";
    2121  }
Note: See TracChangeset for help on using the changeset viewer.