Changeset 471 for trunk/Common/Page.php


Ignore:
Timestamp:
Dec 30, 2012, 10:09:08 PM (12 years ago)
Author:
chronos
Message:
  • Upraveno: Vytvořen modul Network a přesunuto do něj zobrazení topologie a seznamu zařízení.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Page.php

    r453 r471  
    66  var $FormatHTML = false;
    77  var $ShowRuntimeInfo = false;
     8  var $ClearPage = false;
    89  var $PathTree = array('Rozcestník',
    910    'index.php' => '',
     
    178179  {
    179180    $Output = $this->Show();
    180     $Output = $this->ShowHeader($this->FullTitle, $this->ShortTitle).$Output;
    181     $Output .= $this->ShowFooter();
    182     if($this->FormatHTML == true) echo($this->FormatOutput($Output));
    183     else echo($Output);
     181    if($this->ClearPage == false)
     182    {
     183      $Output = $this->ShowHeader($this->FullTitle, $this->ShortTitle).$Output;
     184      $Output .= $this->ShowFooter();
     185      if($this->FormatHTML == true) echo($this->FormatOutput($Output));
     186    }
     187    echo($Output);
    184188  }
    185189
Note: See TracChangeset for help on using the changeset viewer.