Changeset 294 for trunk/index.php
- Timestamp:
- Oct 2, 2010, 6:19:19 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/index.php
r291 r294 77 77 function UserPanel() 78 78 { 79 $Output = '<a href="'.$this->System->Config['Web']['RootFolder'].'/?Action=UserOptions"> Nastavení uživatele</a><br />';79 $Output = '<a href="'.$this->System->Config['Web']['RootFolder'].'/?Action=UserOptions">Profil</a><br />'; 80 80 if($this->System->Modules['User']->CheckPermission('Finance', 'MemberOptions')) 81 $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'?Action=MemberOptions"> Nastavení domácnosti</a><br />';81 $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'?Action=MemberOptions">Domácnost</a><br />'; 82 82 if($this->System->Modules['User']->CheckPermission('Finance', 'DisplaySubjectState')) 83 $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/finance/user_state.php"> Stav financí</a><br />';83 $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/finance/user_state.php">Finance</a><br />'; 84 84 if($this->System->Modules['User']->CheckPermission('Network', 'RegistredHostList')) 85 $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/network/user_hosts.php"> Registrované počítače</a><br />';85 $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/network/user_hosts.php">Počítače</a><br />'; 86 86 if($this->System->Modules['User']->CheckPermission('News', 'Insert')) 87 87 $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/aktuality/?action=add">Vložení aktuality</a><br />'; … … 309 309 else if($Panel['Module'] == 'UserOptions') 310 310 { 311 if($this->System->Modules['User']->User['Id'] != $this->System->Modules['User']->AnonymousUserId) $Output .= $this-> UserPanel();311 if($this->System->Modules['User']->User['Id'] != $this->System->Modules['User']->AnonymousUserId) $Output .= $this->Panel('Přihlášený uživatel', $this->UserPanel()); 312 312 } else 313 313 if($Panel['Module'] == 'Webcam') $Output .= $this->Panel('Kamery', $this->WebcamPanel());
Note:
See TracChangeset
for help on using the changeset viewer.