Changeset 471 for trunk/Common


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í.
Location:
trunk/Common
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Global.php

    r470 r471  
    3131include_once(dirname(__FILE__).'/../Modules/IS/IS.php');
    3232include_once(dirname(__FILE__).'/../Modules/Network/Network.php');
     33include_once(dirname(__FILE__).'/../Modules/TV/TV.php');
    3334
    3435$PrefixMultipliers = array
     
    281282  $System->ModuleManager->RegisterModule(new IS($System));
    282283  $System->ModuleManager->RegisterModule(new Network($System));
     284  $System->ModuleManager->RegisterModule(new TV($System));
    283285  $System->ModuleManager->StartAll();
    284286}
  • 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.