Changeset 323 for trunk/page.php


Ignore:
Timestamp:
Nov 28, 2011, 8:50:09 AM (13 years ago)
Author:
chronos
Message:
  • Upraveno: Zobrazovat ladící volby pouze podle filtru IP adres. Jako výchozí ip pro ladící informace lze použít 127.0.0.1(localhost). Do seznamu lze pak vložit další vzdálené adresy dle potřeby. Adresa by měla být jedinečná pro daný počítač.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/page.php

    r256 r323  
    44{
    55  var $TimeStart;
     6  var $FormatHTML = false;
     7  var $ShowRuntimeInfo = false;
    68  var $PathTree = array('Rozcestník',
    79    'index.php' => '',
     
    8890    'mapa.php' => 'Mapa webu',
    8991  );
     92 
     93  function __construct()
     94  {
     95    global $Config;
     96   
     97    $this->FormatHTML = $Config['Web']['FormatHTML'];
     98    $this->ShowRuntimeInfo = $Config['Web']['ShowRuntimeInfo'];
     99  }
    90100
    91101  function SystemMessage($Title, $Text)
     
    157167    $Output = '<div id="Footer">
    158168   <i>| Správa webu: '.$this->System->Config['Web']['Admin'].' | e-mail: '.$this->System->Config['Web']['AdminEmail'].' |';
    159     if($this->System->Config['Web']['ShowRuntimeInfo'] == true) $Output .= ' Doba generování: '.$Time.' s / '.ini_get('max_execution_time').' s | Použitá paměť: '.HumanSize(memory_get_peak_usage(FALSE)).' / '.ini_get('memory_limit').'B |';
     169    if($this->ShowRuntimeInfo == true) $Output .= ' Doba generování: '.$Time.' s / '.ini_get('max_execution_time').' s | Použitá paměť: '.HumanSize(memory_get_peak_usage(FALSE)).' / '.ini_get('memory_limit').'B |';
    160170  $Output .= '</i></div></body></html>';
    161171    return($Output);
     
    164174  function GetOutput()
    165175  {
    166     global $Config;
    167    
    168176    $Output = $this->Show();
    169177    $Output = $this->ShowHeader($this->FullTitle, $this->ShortTitle).$Output;
    170178    $Output .= $this->ShowFooter();
    171     if($Config['Web']['FormatHTML'] == true) echo($this->FormatOutput($Output));
     179    if($this->FormatHTML == true) echo($this->FormatOutput($Output));
    172180    else echo($Output);
    173181  }
Note: See TracChangeset for help on using the changeset viewer.