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.
Location:
trunk/www/Application/View
Files:
1 added
4 edited

Legend:

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

    r72 r74  
    104104      $Emulator->Download();       
    105105      $Output = $this->System->SystemMessage('Stažení emulátoru', 'Úloha zařazena do fronty');
    106       $TaskView = new TaskView($this->Database, $this->System);
     106      $TaskView = new TaskView($this->System);
    107107      $Output .= $TaskView->ItemList();
    108108    } else $Output = $this->System->SystemMessage('Stažení emulátoru', 'Nebylo zadáno Id');
     
    117117      $Emulator->Compile();       
    118118      $Output = $this->System->SystemMessage('Překlad emulátoru', 'Úloha zařazena do fronty');
    119       $TaskView = new TaskView($this->Database, $this->System);
     119      $TaskView = new TaskView($this->System);
    120120      $Output .= $TaskView->ItemList();
    121121    } else $Output = $this->System->SystemMessage('Překlad emulátoru', 'Nebylo zadáno Id');
  • trunk/www/Application/View/Include.php

    r69 r74  
    1414include('Application/View/Client.php');
    1515include('Application/View/Debug.php');
     16include('Application/View/Cluster.php');
     17
    1618?>
  • 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>';
  • trunk/www/Application/View/Realm.php

    r72 r74  
    230230        $Realm->CreateDatabase();           
    231231        $Output = $this->System->SystemMessage('Vytvoření světu', $Realm->ImportDatabase(true));
    232         $TaskView = new TaskView($this->Database, $this->System);
     232        $TaskView = new TaskView($this->System);
    233233        $Output .= $TaskView->ItemList();
    234234        //$UserOptions->LoadValuesFromDatabase($this->System->Modules['User']->User['Id']);
     
    337337      {
    338338        $Output .= $this->System->SystemMessage('Spuštění serveru', $Realm->Start());
    339         $TaskView = new TaskView($this->Database, $this->System);
     339        $TaskView = new TaskView($this->System);
    340340        $Output .= $TaskView->ItemList();;
    341341      } else $this->System->SystemMessage('Spuštění serveru', 'Nemáte oprávnění');
     
    353353      {
    354354        $Output .= $this->System->SystemMessage('Zastavení serveru', $Realm->Stop());
    355         $TaskView = new TaskView($this->Database, $this->System);
     355        $TaskView = new TaskView($this->System);
    356356        $Output .= $TaskView->ItemList();;
    357357      } else $this->System->SystemMessage('Zastavení serveru', 'Nemáte oprávnění');
     
    373373        {
    374374          $Output = $this->System->SystemMessage('Vynulování databáze', $Realm->ImportDatabase(true));
    375           $TaskView = new TaskView($this->Database, $this->System);
     375          $TaskView = new TaskView($this->System);
    376376          $Output .= $TaskView->ItemList();
    377377          //$UserOptions->LoadValuesFromDatabase($this->System->Modules['User']->User['Id']);
Note: See TracChangeset for help on using the changeset viewer.