Changeset 95 for trunk/Application/BaseView.php
- Timestamp:
- Dec 6, 2021, 11:33:48 AM (3 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/BaseView.php
r94 r95 3 3 class BaseView extends View 4 4 { 5 function ShowPage( $Content)5 function ShowPage(string $Content): string 6 6 { 7 7 global $ReleaseTime, $Revision; … … 22 22 ' <a href="https://app.zdechov.net/estetistic/">Zdrojový kód</a></div>'; 23 23 $Output .= '</body></html>'; 24 echo($Output);24 return $Output; 25 25 } 26 26 27 function GetOutput( $Page)27 function GetOutput(Page $Page): string 28 28 { 29 29 $Output = $this->ShowPage($Page->Show());
Note:
See TracChangeset
for help on using the changeset viewer.