Changeset 78 for www/style.php


Ignore:
Timestamp:
May 27, 2008, 1:54:41 PM (16 years ago)
Author:
george
Message:

Upraveno: Korekce XHTML, grafické styly.
Přidáno: Pokusná mapa webu.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • www/style.php

    r77 r78  
    22include_once('global.php');
    33
     4function SystemMessage($Title, $Text)
     5{
     6  echo('<table align="center"><tr><td><div class="SystemMessage"><h3>'.$Title.'</h3><div>'.$Text.'</div></div</td></tr></table>');
     7  //ShowFooter();
     8  //die();
     9}
     10
     11define('VISIBLE', 'Viditelné');
     12define('INVISIBLE', 'Neviditelné');
     13
    414function ShowHeader($Title, $Path, $BodyParam = '')
    515{
    6   global $Time_Start, $refresh, $Config, $User;
     16  global $Time_Start, $refresh, $Config, $User, $PathTree;
    717
    818  $Time_Start = GetMicrotime();         // Zjisti počáteční čas
     
    1020  while(strpos($ScriptName, '//') !== false)
    1121    $ScriptName = str_replace('//', '/', $ScriptName);
    12   $PathTree = array('Rozcestník', 
     22  $PathTree = array('Rozcestník',
    1323    'index.php' => '',
    1424    'missing.php' => '',
     
    1929      'dostupnost.php' => 'Dostupnost zařízení',
    2030      'restart.php' => 'Restart služeb',
     31      'tc' => 'Řízení internetového provozu',
    2132    ),
    2233    'network.php' => 'Technické informace',
     
    97108      'index.php' => 'Nastavení zálohování',   
    98109    ),
     110    'mapa.php' => 'Mapa webu',
    99111  );
    100112  $PathTreePath = '/';
     
    129141  </head><body style="font-family: sans-serif;" '.$BodyParam.'>
    130142<div id="Title">'.$Title.'</div>
    131 <form id="Navigation" action="?Action=Login" method="post"><div>
    132 <span id="MenuItem"><strong>Navigace &gt;&gt;</strong> '.$Navigation.'</span><div id="MenuItem2">Uživatel: '.$User->User['Name'].'</div></div></form>';
    133   echo(FormatOutput($Output));
     143<div id="Navigation"><span id="MenuItem"><strong>Navigace &gt;&gt;</strong> '.$Navigation.'</span><div id="MenuItem2">';
     144  if($User->User['Id'] == $User->AnonymousUserId)
     145    $Output .= '<a href="'.$Config['Web']['RootFolder'].'?Action=LoginForm">Přihlášení</a> <a href="'.$Config['Web']['RootFolder'].'?Action=RegistrationForm">Registrace</a>';
     146      else $Output .= $User->User['Name'].' <a href="?Action=Logout">Odhlásit</a> <a href="?Action=UserOptions">Nastavení</a>';
     147  $Output .= '</div></div>';
     148  echo($Output);
    134149}
    135150
Note: See TracChangeset for help on using the changeset viewer.