Ignore:
Timestamp:
Aug 23, 2009, 9:38:51 PM (15 years ago)
Author:
george
Message:
  • Přidáno: Zobrazení počítačů ve skupině.
  • Opraveno: Různé opravy změny struktury tříd.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/Application/View/Page.php

    r73 r74  
    3535    ' <a href="?Module=Emulator&amp;Action=ItemList">Verze emulátoru</a>'.
    3636    '</span><div class="MenuItem2">';
    37     if($this->System->Modules['User']->User['Id'] == $this->System->Modules['User']->AnonymousUserId)
     37    if($this->System->Modules['User']->User['Id'] == $this->Config['Web']['UserAnonymousId'])
    3838    {
    3939      $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/?Module=User&amp;Action=Login">Přihlášení</a>';
     
    6464  {
    6565    $Output = '<table class="BasicTable"><tr>';
    66     if($this->System->Modules['User']->User['Id'] != $this->System->Modules['User']->AnonymousUserId)
     66    if($this->System->Modules['User']->User['Id'] != $this->Config['Web']['UserAnonymousId'])
    6767      $Output .= '<td class="UserMenu">'.$this->UserMenu().'</td>';
    6868    $Output .= '<td class="Content">'.$Content.'</td>';
    6969    if(!array_key_exists('Action', $_GET))
    7070    {
    71       $NewsView = new NewsView($this->Database, $this->System);
     71      $NewsView = new NewsView($this->System);
    7272      $Output .= $NewsView->View();
    7373    }
     
    7979  {   
    8080    $Output = '<strong>Uživatelské menu</strong><br />';
    81     if($this->System->Modules['User']->User['Id'] != $this->System->Modules['User']->AnonymousUserId)
     81    if($this->System->Modules['User']->User['Id'] != $this->Config['Web']['UserAnonymousId'])
    8282    {
     83      $Output .= '<div><a href="?Module=Cluster&amp;Action=ItemList">Uzly skupiny</a></div>';
    8384      $Output .= '<div><a href="?Module=Server&amp;Action=ItemList&amp;Filter=User">Moje servery</a></div>';
    8485      //$Output .= '<div><a href="?Action=RealmList&amp;Filter=User">Moje světy</a></div>';
Note: See TracChangeset for help on using the changeset viewer.