Changeset 567 for trunk/Common/Page.php
- Timestamp:
- Sep 8, 2013, 2:28:15 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Page.php
r565 r567 71 71 { 72 72 if($this->System->User->User['Id'] == null) 73 $Output .= '<a href="'.$this->System->Link('/?Action=LoginForm').'">Přihlášení</a> <a href="'.$this->System->Link('/?Action=UserRegister').'">Registrace</a>'; 74 else $Output .= $this->System->User->User['Name'].' <a href="'.$this->System->Link('/?Action=Logout').'">Odhlásit</a>'; 73 $Output .= '<a href="'.$this->System->Link('/?Action=LoginForm').'">Přihlášení</a> '. 74 '<a href="'.$this->System->Link('/?Action=UserRegister').'">Registrace</a>'; 75 else $Output .= $this->System->User->User['Name']. 76 ' <a href="'.$this->System->Link('/?Action=UserMenu').'">Nabídka</a>'. 77 ' <a href="'.$this->System->Link('/?Action=Logout').'">Odhlásit</a>'; 75 78 } else $Output .= ' '; 76 79 // <a href="'.$this->System->Link('/?Action=UserOptions').'">Nastavení</a>';
Note:
See TracChangeset
for help on using the changeset viewer.