Changeset 78 for www/style.php
- Timestamp:
- May 27, 2008, 1:54:41 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
www/style.php
r77 r78 2 2 include_once('global.php'); 3 3 4 function 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 11 define('VISIBLE', 'Viditelné'); 12 define('INVISIBLE', 'Neviditelné'); 13 4 14 function ShowHeader($Title, $Path, $BodyParam = '') 5 15 { 6 global $Time_Start, $refresh, $Config, $User ;16 global $Time_Start, $refresh, $Config, $User, $PathTree; 7 17 8 18 $Time_Start = GetMicrotime(); // Zjisti počáteční čas … … 10 20 while(strpos($ScriptName, '//') !== false) 11 21 $ScriptName = str_replace('//', '/', $ScriptName); 12 $PathTree = array('Rozcestník', 22 $PathTree = array('Rozcestník', 13 23 'index.php' => '', 14 24 'missing.php' => '', … … 19 29 'dostupnost.php' => 'Dostupnost zařízení', 20 30 'restart.php' => 'Restart služeb', 31 'tc' => 'Řízení internetového provozu', 21 32 ), 22 33 'network.php' => 'Technické informace', … … 97 108 'index.php' => 'Nastavení zálohování', 98 109 ), 110 'mapa.php' => 'Mapa webu', 99 111 ); 100 112 $PathTreePath = '/'; … … 129 141 </head><body style="font-family: sans-serif;" '.$BodyParam.'> 130 142 <div id="Title">'.$Title.'</div> 131 <form id="Navigation" action="?Action=Login" method="post"><div> 132 <span id="MenuItem"><strong>Navigace >></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 >></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); 134 149 } 135 150
Note:
See TracChangeset
for help on using the changeset viewer.