Changeset 294 for trunk/index.php


Ignore:
Timestamp:
Oct 2, 2010, 6:19:19 PM (14 years ago)
Author:
george
Message:
  • Opraveno: Nové generování dokladových řad při generování nových faktůr.
  • Odstraněno: Přímý přístup na stav financí uživatele bez přihlášení.
  • Upraveno: Uživatelský panel je také ohraničen boxem.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/index.php

    r291 r294  
    7777  function UserPanel()
    7878  {
    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 />';
    8080    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 />';
    8282    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 />';
    8484    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 />';
    8686    if($this->System->Modules['User']->CheckPermission('News', 'Insert'))
    8787      $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/aktuality/?action=add">Vložení aktuality</a><br />';
     
    309309        else if($Panel['Module'] == 'UserOptions')
    310310        {
    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());
    312312        } else
    313313        if($Panel['Module'] == 'Webcam') $Output .= $this->Panel('Kamery', $this->WebcamPanel());
Note: See TracChangeset for help on using the changeset viewer.