Changeset 970 for trunk/Application/BaseView.php
- Timestamp:
- Jul 17, 2024, 10:48:28 PM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/BaseView.php
r965 r970 7 7 public bool $FormatHTML = false; 8 8 public bool $ShowRuntimeInfo = false; 9 public bool $RawPage = false;10 public bool $BasicHTML = false;11 9 public string $ParentClass = ''; 12 10 public string $Title; … … 85 83 86 84 $Output .= '</head><body'.$BodyParam.'>'; 87 if ($ this->BasicHTML == false)85 if ($Page->BasicHTML == false) 88 86 { 89 87 //$Output .= '<div class="MainTitle">'.$Title.'</div>'; … … 99 97 } 100 98 101 function ShowFooter( ): string99 function ShowFooter(Page $Page): string 102 100 { 103 101 global $Revision, $ReleaseTime; … … 105 103 $Time = round(GetMicrotime() - Core::Cast($this->System)->ScriptTimeStart, 2); 106 104 $Output = ''; 107 if ($ this->BasicHTML == false)105 if ($Page->BasicHTML == false) 108 106 { 109 107 $Output .= '<div id="Footer">'. … … 125 123 if ($Page->RawPage == false) 126 124 { 127 $Output = $this->ShowHeader($Page).$Output.$this->ShowFooter( );125 $Output = $this->ShowHeader($Page).$Output.$this->ShowFooter($Page); 128 126 if ($this->FormatHTML == true) $Output = $this->FormatOutput($Output); 129 127 }
Note:
See TracChangeset
for help on using the changeset viewer.