Changeset 231 for trunk/index.php
- Timestamp:
- Jun 29, 2009, 11:04:48 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/index.php
r225 r231 21 21 array('WebMail', '/webmail/', 'openwebmail.gif'), 22 22 array('Jídelníček', '/jidelna/', 'apple.gif'), 23 array('Televize', 'http://tv.zdechov.net/', ''), 24 array('Herní server', 'http://game.zdechov.net/', 'cube.gif'), 25 array('Telefonní seznam', '/telseznam.php', 'tel.gif'), 23 //array('Televize', 'http://tv.zdechov.net/', ''), 24 //array('Telefonní seznam', '/telseznam.php', 'tel.gif'), 26 25 array('Mapa sítě', '/map/', 'clear.gif'), 27 26 array('Otvírací doby', '/otevreno.php', 'otv_doby.gif'), … … 35 34 array('Měřič spotřeby', '/merak.php', 'electric.gif'), 36 35 array('Plány do budoucna', '/ukoly.php', ''), 37 38 36 ), 37 'local' => array('Místní organizace', 39 38 array('Obecní úřad', 'http://www.zdechov.cz/', 'obec_zdechov.ico'), 40 39 array('Motokrosová grapa', 'http://zdechovskagrapa.sweb.cz/', ''), 41 40 array('Snowpark', 'http://www.snbzdechov.com/', 'www_snbzdechov_com.ico'), 42 41 array('Sbor dobrovolných hasičů', 'http://www.sdhzdechov.wz.cz/', ''), 43 array('TJ Sokol', 'http://fotbal.zdechov.net/', 'socer.gif'), 42 array('TJ Sokol', 'http://fotbal.zdechov.net/', 'socer.gif'), 44 43 array('Farnost', 'http://farnost.zdechov.net/', 'cfix.gif'), 45 44 ), … … 68 67 ), 69 68 'fun' => array('Zábava', 70 71 69 array('Youtube', 'http://www.youtube.com/', 'www_youtube_com.png'), 70 array('Stream.cz', 'http://www.stream.cz/', 'www_stream_cz.png'), 72 71 array('Last.fm', 'http://www.last.fm/', ''), 72 ), 73 'hosted' => array('Hostované weby', 74 array('Heroes of Fantasy', 'http://wow.zdechov.net/', 'cube.gif'), 75 array('WoW překlad', 'http://wowpreklad.zdechov.net/', 'cube.gif'), 76 array('Temné časy', 'http://temnecasy.zdechov.net/', 'cube.gif'), 77 array('Sharp MZ community web', 'http://sharp.zdechov.net/', 'clear.gif'), 73 78 ), 74 79 /*'computers' => array('Prodej počítačů', … … 152 157 '<a href="'.$this->System->Config['Web']['RootFolder'].'/?Action=UserOptions">Nastavení uživatele</a><br />'; 153 158 if($this->System->Modules['User']->CheckPermission('Finance', 'MemberOptions')) 154 159 $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'?Action=MemberOptions">Nastavení domácnosti</a><br />'; 155 160 if($this->System->Modules['User']->CheckPermission('Finance', 'DisplaySubjectState')) 156 161 $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/finance/user_state.php">Stav financí</a><br />'; 157 162 if($this->System->Modules['User']->CheckPermission('Network', 'RegistredHostList')) 158 163 $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/network/user_hosts.php">Registrované počítače</a><br />'; 159 164 if($this->System->Modules['User']->CheckPermission('News', 'Insert')) 160 165 $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/aktuality/?action=add">Vložení aktuality</a><br />'; 161 166 if($this->System->Modules['User']->CheckPermission('EatingPlace', 'Edit')) 162 167 $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/jidelna/menuedit.php">Editace jídelníčků</a><br />'; … … 222 227 global $Database, $Config, $User; 223 228 224 229 $Output = ''; 225 230 if(array_key_exists('Action', $_GET)) 226 231 { … … 235 240 $Output .= $Form->ShowEditForm(); 236 241 $Output .= '<div class="Centred"><a href="?Action=UserRegister">Registrovat se</a> '. 237 242 '<a href="?Action=PasswordRecovery">Obnova zapomenutého hesla</a></div>'; 238 243 } else 239 244 if($_GET['Action'] == 'Login') … … 249 254 $Output .= $Form->ShowEditForm(); 250 255 $Output .= '<div class="Centred"><a href="?Action=UserRegister">Registrovat se</a> '. 251 256 '<a href="?Action=PasswordRecovery">Obnova zapomenutého hesla</a></div>'; 252 257 } 253 258 } else … … 361 366 $Output .= '<table id="MainTable"><tr><td valign="top">'; 362 367 $Output .= '<div class="Panel">'.$this->ShowLinks($this->Links['main']).'</div>'; 368 $Output .= '<div class="Panel">'.$this->ShowLinks($this->Links['hosted']).'</div>'; 363 369 $Output .= '</td><td valign="top">'; 364 370 $Output .= '<div class="Panel">'.$this->ShowLinks($this->Links['search']).'</div>'; … … 371 377 $Output .= '</td><td valign="top">'; 372 378 if($this->System->Modules['User']->User['Id'] != $this->System->Modules['User']->AnonymousUserId) 373 379 $Output .= '<div class="Panel">'.$this->UserPanel().'</div>'; 374 380 $Output .= '<div class="Panel">'.$this->WebcamPanel().'</div>'; 375 381 $Output .= '<div class="Panel">'.$this->OnlineHostList().'</div>';
Note:
See TracChangeset
for help on using the changeset viewer.