Changeset 571 for trunk/Common/Page.php


Ignore:
Timestamp:
Sep 27, 2013, 12:44:30 PM (11 years ago)
Author:
chronos
Message:
  • Přidáno: Zobrazení verze a času v záhlaví stránky.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Page.php

    r567 r571  
    8585  function ShowFooter()
    8686  {
    87     global $ScriptTimeStart;
     87    global $ScriptTimeStart, $Revision, $ReleaseTime;
     88   
    8889    $Time = round(GetMicrotime() - $ScriptTimeStart, 2);
    8990    $Output = '';
    9091    if($this->BasicHTML == false)
    9192    {
    92       $Output .= '<div id="Footer">
    93      <i>| Správa webu: '.$this->System->Config['Web']['Admin'].' | e-mail: '.$this->System->Config['Web']['AdminEmail'].' |';
     93      $Output .= '<div id="Footer">'.
     94      '<i>| Správa webu: '.$this->System->Config['Web']['Admin'].' | e-mail: '.$this->System->Config['Web']['AdminEmail'].' | '.
     95      ' Verze: '.$Revision.' ('.HumanDate($ReleaseTime).') |';
    9496      if($this->ShowRuntimeInfo == true) $Output .= ' Doba generování: '.$Time.' s / '.ini_get('max_execution_time').
    9597        ' s | Použitá paměť: '.HumanSize(memory_get_peak_usage(FALSE)).' / '.ini_get('memory_limit').'B |';
Note: See TracChangeset for help on using the changeset viewer.