Ignore:
Timestamp:
Aug 23, 2009, 6:14:01 PM (15 years ago)
Author:
george
Message:
  • Upraveno: Znovu zprovozněny třídy HomePage, Server a User.
File:
1 edited

Legend:

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

    r69 r71  
    9797    foreach($Table->Values as $Index => $Item)
    9898    {
    99      $Table->Values[$Index]['Actions'] = '<a href="?Action=ServerShow&amp;Id='.$Item['Id'].'">Podrobnosti</a>';
     99     $Table->Values[$Index]['Actions'] = '<a href="?Module=Server&amp;Action=Show&amp;Id='.$Item['Id'].'">Podrobnosti</a>';
    100100     unset($Table->Values[$Index]['Id']);
    101101    }
     
    109109      $DbRow = $DbResult->fetch_row();
    110110      if(($ServerCount < $Config['MaxServerCount']) and ($DbRow[0] < $Config['MaxServerCountPerUser']))
    111         $Output .= '<br /><div style="text-align: center;"><a href="?Action=ServerAdd">Vytvořit nový server</a></dev>';     
     111        $Output .= '<br /><div style="text-align: center;"><a href="?Module=Server&amp;Action=Add">Vytvořit nový server</a></dev>';     
    112112    }
    113113    return($Output);
     
    123123    {
    124124    $Output = '<h4>Podrobnosti serveru</h4>';
    125     $Form = new Form($this->ItemFormClass);
     125    $Form = new Form($this->System, $this->ItemFormClass);
    126126    $Form->LoadValuesFromDatabase($Id);
    127127    $Form->Definition['Items']['Realmlist'] = array('Type' => 'String', 'Caption' => 'Adresa k připojení', 'Default' => '');   
     
    142142      if(array_key_exists('Id', $Server->Server['Database']) and ($Server->Server['Lock'] == 0))
    143143      {
    144         if($ServerStatus['RealmdPortState'] == true) $Output .= ' <a href="?Action=ServerStop&amp;Id='.$Server->Id.'">Zastavit</a>  <a href="?Action=ServerRestart&amp;Id='.$Server->Id.'">Restartovat</a>';
    145           else $Output .= ' <a href="?Action=ServerStart&amp;Id='.$Server->Id.'">Spustit</a>';
     144        if($ServerStatus['RealmdPortState'] == true) $Output .= ' <a href="?Action=ServerStop&amp;Id='.$Server->Id.'">Zastavit</a>  <a href="?Module=Server&amp;Action=Restart&amp;Id='.$Server->Id.'">Restartovat</a>';
     145          else $Output .= ' <a href="?Module=Server&amp;Action=Start&amp;Id='.$Server->Id.'">Spustit</a>';
    146146      }
    147147      if($Server->Server['Lock'] == 0)
    148148      {
    149         $Output .= ' <a href="?Action=ServerEdit&amp;Id='.$Server->Id.'">Upravit základní nastavení</a>';
     149        $Output .= ' <a href="?Module=Server&amp;Action=Edit&amp;Id='.$Server->Id.'">Upravit základní nastavení</a>';
    150150      }
    151151      //$Output .= ' <a href="?Action=ServerDatabaseImport&amp;Id='.$Server->Id.'">Načtení čisté databáze</a>';
    152       $Output .= ' <a href="?Action=RealmAdd&amp;Id='.$Server->Id.'">Vytvořit nový svět</a>';
    153       $Output .= ' <a href="?Action=UpdateRealmCharacters&amp;Id='.$Server->Id.'">Aktualizovat počty postav</a>';
     152      $Output .= ' <a href="?Module=Realm&amp;Action=Add&amp;Id='.$Server->Id.'">Vytvořit nový svět</a>';
     153      $Output .= ' <a href="?Module=Realm&amp;Action=UpdateCharacters&amp;Id='.$Server->Id.'">Aktualizovat počty postav</a>';
    154154    }
    155     $Output .= ' <a href="?Action=GameAccountRegister&amp;Id='.$Server->Id.'">Vytvoření herního účtu</a>';
     155    $Output .= ' <a href="?Module=Server&amp;Action=GameAccountRegister&amp;Id='.$Server->Id.'">Vytvoření herního účtu</a>';
    156156    $Output .= '</div>';
    157157   
    158158    // Show realmlist
    159     $RealmView = new RealmView($this->Database, $this->System);
     159    $RealmView = new RealmView($this->System);
    160160    $Output .= $RealmView->ItemList();
    161161    } else $Output = $this->System->SystemMessage('Zobrazení serveru', 'Server se zadaným id nenalezen.');
     
    180180        else
    181181        {
    182           $Form = new Form($this->CreateFormClass);
     182          $Form = new Form($this->System, $this->CreateFormClass);
    183183          $Form->LoadValuesFromForm();
    184184          $Form->OnSubmit = '?Action=ServerCreate';
     
    208208        if($NewPortRealmd < $Config['BaseNetworkPortRealmd']) $NewPortRealmd = $Config['BaseNetworkPortRealmd'];
    209209           
    210         $Form = new Form($this->CreateFormClass, array());
     210        $Form = new Form($this->System, $this->CreateFormClass, array());
    211211        $Form->LoadValuesFromForm();
    212212        $this->Database->insert('Server', array('Name' => $Form->Values['Name'], 'Description' => $Form->Values['Description'], 'User' => $this->System->Modules['User']->User['Id'], 'Homepage' => $Form->Values['Homepage'], 'Database' => $Form->Values['Database'], 'NetworkPortRealmd' => $NewPortRealmd, 'Lock' => 1, 'TimeCreate' => 'NOW()'));
     
    215215        $Server->CreateDatabase();           
    216216        $Output .= $this->System->SystemMessage('Vytvoření serveru', $Server->ImportDatabase(true));
    217         $TaskView = new TaskView($this->Database, $this->System);
     217        $TaskView = new TaskView($this->System);
    218218        $Output .= $TaskView->ItemList();
    219219        //$UserOptions->LoadValuesFromDatabase($this->System->Modules['User']->User['Id']);
     
    231231    if(($this->System->Modules['User']->User['Id'] == $Server->Server['User']) or ($this->System->Modules['User']->User['Role'] >= USER_ROLE_ADMINISTRATOR))
    232232    {
    233       $Form = new Form($this->EditFormClass, array());
     233      $Form = new Form($this->System, $this->EditFormClass, array());
    234234      $Form->LoadValuesFromForm();
    235235      $ServerId = $_POST['ServerId'];
     
    253253    if(($this->System->Modules['User']->User['Id'] == $Server->Server['User']) or ($this->System->Modules['User']->User['Role'] >= USER_ROLE_ADMINISTRATOR))
    254254    {
    255       $Form = new Form($this->EditFormClass);
     255      $Form = new Form($this->System, $this->EditFormClass);
    256256      $Form->LoadValuesFromDatabase($_GET['Id']);
    257257      $Form->Values['ServerId'] = $_GET['Id'];
     
    271271      {
    272272        $Output .= $this->System->SystemMessage('Spuštění serveru', $Server->Start());
    273         $TaskView = new TaskView($this->Database, $this->System);
     273        $TaskView = new TaskView($this->System);
    274274        $Output .= $TaskView->ItemList();;
    275275      } else $this->System->SystemMessage('Spuštění serveru', 'Nemáte oprávnění');
     
    287287      {
    288288        $Output .= $this->System->SystemMessage('Zastavení serveru', $Server->Stop());
    289         $TaskView = new TaskView($this->Database, $this->System);
     289        $TaskView = new TaskView($this->System);
    290290        $Output .= $TaskView->ItemList();;
    291291      } else $this->System->SystemMessage('Zastavení serveru', 'Nemáte oprávnění');
     
    296296  function AccountCreate()
    297297  {
    298     $Form = new Form($this->GameAccountNewFormClass);
     298    $Form = new Form($this->System, $this->GameAccountNewFormClass);
    299299    $Form->LoadValuesFromForm();
    300300    $Form->Values['ServerId'] = $_GET['Id'];
    301     $Form->OnSubmit = '?Action=GameAccountRegister2';
     301    $Form->OnSubmit = '?Module=Server&amp;Action=GameAccountRegisterFinish';
    302302    $Output = $Form->ShowEditForm();
    303303    return($Output);
     
    306306  function AccountCreateFinish()
    307307  {
    308     $Form = new Form($this->GameAccountNewFormClass);
     308    $Form = new Form($this->System, $this->GameAccountNewFormClass);
    309309    $Form->LoadValuesFromForm();
    310310    $Server = new Server($this->Database, $Form->Values['ServerId']);
    311311    $Output = $this->System->SystemMessage('Vytvoření herního účtu', $Server->NewAccount($Form->Values['Name'], $Form->Values['Password'], $Form->Values['Password2'], $Form->Values['Email'], $Form->Values['Expansion']));
    312     $Output .= '<a href="?Action=GameAccountRegister&amp;Id='.$Form->Values['ServerId'].'">Zpět k zadání údajů</a>';
     312    $Output .= '<a href="?Module=Server&amp;Action=GameAccountRegister&amp;Id='.$Form->Values['ServerId'].'">Zpět k zadání údajů</a>';
    313313    return($Output);
    314314  }
Note: See TracChangeset for help on using the changeset viewer.