Changeset 348 for trunk/Modules/page.php


Ignore:
Timestamp:
Jan 17, 2012, 9:39:54 PM (13 years ago)
Author:
chronos
Message:
  • Upraveno: Modul zobrazující seznam kanálů IP televize přepracován na systémový modul.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/page.php

    r343 r348  
    66  var $FormatHTML = false;
    77  var $ShowRuntimeInfo = false;
     8  var $SimplePage = false;
    89  var $PathTree = array('Rozcestník',
    910    'index.php' => '',
     
    175176  {
    176177    $Output = $this->Show();
    177     $Output = $this->ShowHeader($this->FullTitle, $this->ShortTitle).$Output;
    178     $Output .= $this->ShowFooter();
     178    if(!$this->SimplePage)
     179    {
     180      $Output = $this->ShowHeader($this->FullTitle, $this->ShortTitle).$Output;
     181      $Output .= $this->ShowFooter();
     182    }
    179183    if($this->FormatHTML == true) echo($this->FormatOutput($Output));
    180184    else echo($Output);
Note: See TracChangeset for help on using the changeset viewer.