Changeset 970 for trunk/Application
- Timestamp:
- Jul 17, 2024, 10:48:28 PM (5 months ago)
- Location:
- trunk/Application
- Files:
-
- 3 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 } -
trunk/Application/UpdateTrace.php
r967 r970 2259 2259 "VALUES (NULL , 'Měsíční přehled', '".$DbRow['Id']."', '".$ActionId."', '1');"); 2260 2260 } 2261 } 2262 2263 function UpdateTo970(UpdateManager $Manager): void 2264 { 2265 $Manager->Execute('ALTER TABLE `Service` ADD `InternetSpeedBonus` INT NULL DEFAULT NULL AFTER `InternetSpeedMin`;'); 2261 2266 } 2262 2267 … … 2375 2380 953 => array('Revision' => 957, 'Function' => 'UpdateTo957'), 2376 2381 957 => array('Revision' => 967, 'Function' => 'UpdateTo967'), 2382 967 => array('Revision' => 970, 'Function' => 'UpdateTo970'), 2377 2383 ); 2378 2384 } -
trunk/Application/Version.php
r969 r970 1 1 <?php 2 2 3 $Revision = 9 69; // Subversion revision4 $DatabaseRevision = 9 67; // SQL structure revision3 $Revision = 970; // Subversion revision 4 $DatabaseRevision = 970; // SQL structure revision 5 5 $ReleaseTime = strtotime('2024-07-17');
Note:
See TracChangeset
for help on using the changeset viewer.