Changeset 56 for trunk/View.php


Ignore:
Timestamp:
Apr 7, 2020, 9:13:33 PM (4 years ago)
Author:
chronos
Message:
  • Modified: Updated Common package.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/View.php

    r55 r56  
    99  var $ShowRuntimeInfo = false;
    1010  var $ShowNavigation = false;
    11   var $ClearPage = false;
    1211  var $BasicHTML = false;
    1312  var $ParentClass = '';
     
    123122    $Output = '';
    124123    if ($this->BasicHTML == false)
    125     {           
     124    {
    126125      $Output .= '<div class="Footer">'.
    127126      '<i>';
     
    129128      $Output .= ' <a href="https://app.zdechov.net/tanec/">Zdrojový kód</a> ';
    130129      //$Output .= ' Verze: '.$Revision.' ('.HumanDate($ReleaseTime).') ';
    131       if ($this->ShowRuntimeInfo == true) 
     130      if ($this->ShowRuntimeInfo == true)
    132131      {
    133132        $Output .= ' Doba generování: '.$Time.' s / '.ini_get('max_execution_time').' s '.
     
    145144
    146145    $Output = $Page->Show();
    147     if ($Page->ClearPage == false)
     146    if ($Page->RawPage == false)
    148147    {
    149148      $Output = $this->ShowHeader($Page).$Output.$this->ShowFooter();
Note: See TracChangeset for help on using the changeset viewer.