Changeset 56 for trunk/www/view/base.php


Ignore:
Timestamp:
Aug 4, 2009, 9:53:52 AM (15 years ago)
Author:
george
Message:
  • Upraveno: Definice formulářů a tabulek ze souboru form_classes.php byly rozděleny do odpovídajících souborů ve složce view.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/view/base.php

    r55 r56  
    1818  function UserMenu()
    1919  {
     20    global $Config;
     21   
    2022    $Output = '<strong>Uživatelské menu</strong><br />';
    2123    if($this->System->Modules['User']->User['Id'] != $this->System->Modules['User']->AnonymousUserId)
    2224    {
    23       $DbResult = $this->Database->query('SELECT COUNT(*) FROM Server WHERE User='.$this->System->Modules['User']->User['Id']);
    24       $DbRow = $DbResult->fetch_row();
    25       if($DbRow[0] > 0)
    26       {
    27         $DbResult = $this->Database->query('SELECT Id FROM Server WHERE User='.$this->System->Modules['User']->User['Id']);
    28         $Server = $DbResult->fetch_assoc();
    29         $Output .= '<div><a href="?Action=ServerShow&amp;Id='.$Server['Id'].'">Můj server</a></div>';
    30         $Output .= '<div><a href="?Action=RealmList">Moje světy</a></div>';
    31         $Output .= '<div><a href="?Action=DebugList&amp;Id='.$Server['Id'].'">Ladící záznamy</a></div>';
    32         $Output .= '<div><a href="?Action=BackupList&amp;Id='.$Server['Id'].'">Zálohy</a></div>';
    33         $Output .= '<div><a href="?Action=TaskList">Fronta úloh</a></div>';
    34         $Output .= '<div><a href="?Action=UpdateList&amp;Id='.$Server['Id'].'">Dostupné aktualizace</a></div>';
    35       } else $Output .= '<div><a href="?Action=ServerAdd">Vytvořit vlastní server</a></div>';
     25      $Output .= '<div><a href="?Action=ServerList&amp;Filter=User">Moje servery</a></div>';
     26      $Output .= '<div><a href="?Action=RealmList&amp;Filter=User">Moje světy</a></div>';
     27      //$Output .= '<div><a href="?Action=DebugList&amp;Id='.$Server['Id'].'">Ladící záznamy</a></div>';
     28      //$Output .= '<div><a href="?Action=BackupList&amp;Id='.$Server['Id'].'">Zálohy</a></div>';
     29      $Output .= '<div><a href="?Action=TaskList">Fronta úloh</a></div>';
     30      //$Output .= '<div><a href="?Action=UpdateList&amp;Id='.$Server['Id'].'">Dostupné aktualizace</a></div>';
     31
    3632      if($this->System->Modules['User']->User['Role'] == USER_ROLE_ADMINISTRATOR)
    3733      {
Note: See TracChangeset for help on using the changeset viewer.