Changeset 56


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.
Location:
trunk/www
Files:
1 added
1 deleted
14 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/common/form.php

    r54 r56  
    11<?php
    2 
    3 include('form_classes.php');
    42
    53class Form
     
    97  var $OnSubmit = '';
    108 
    11   function __construct($ClassName)
     9  function __construct($FormClass)
    1210  { 
    13     global $FormClasses;
    14 
    15     if(array_key_exists($ClassName, $FormClasses))
     11    $this->Definition = $FormClass;
     12    foreach($this->Definition['Items'] as $Index => $Item)
    1613    {
    17       $this->Definition = &$FormClasses[$ClassName];
    18       foreach($this->Definition['Items'] as $Index => $Item)
    19       {
    20         $this->Values[$Index] = '';
    21       }   
    22     } else
    23     {
    24       $this->Definition = array('Title' => 'Neznámý formulář', 'Table' => '', 'Items' => array());
    25     }
     14      $this->Values[$Index] = '';
     15    }   
    2616  }
    2717
  • trunk/www/common/table.php

    r54 r56  
    1111  var $TotalRowCount;
    1212 
    13   function __construct($ClassName)
     13  function __construct($FormClass)
    1414  {
    15     global $FormClasses;
    16 
    17     $this->Definition = &$FormClasses[$ClassName];   
     15    $this->Definition = $FormClass;   
    1816    $this->QueryParameters = array();
    1917  }
  • trunk/www/config.sample.php

    r55 r56  
    3232  'BaseDir' => '/opt/wowhosting/',
    3333  'MaxServerCount' => 20,
     34  'MaxServerCountPerUser' => 1,
     35  'MaxRealmCount' => 20,
    3436  'MaxRealmPerServerCount' => 1,
    3537  'MaxOnlinePlayerCountPerServer' => 100,
  • trunk/www/types/include.php

    r11 r56  
    7575}
    7676
     77include('types/Custom.php');
     78
    7779?>
  • trunk/www/view/backup.php

    r55 r56  
    33class BackupView extends Module
    44{
     5  var $ItemListFormClass = array(
     6    'Title' => 'Zálohy',
     7    'Table' => '(SELECT * FROM `Backup`)',
     8    'Items' => array(
     9      'Time' => array('Type' => 'DateTime', 'Caption' => 'Čas', 'Default' => ''),
     10      'Description' => array('Type' => 'String', 'Caption' => 'Popis', 'Default' => ''),
     11    ),
     12  );
     13
    514  function ShowListOnRow($Row)
    615  {
     
    2029      {
    2130        $Output = '<h4>Dostupné zálohy</h4>';
    22         $Table = new Table('BackupList');
     31        $Table = new Table($this->ItemListFormClass);
    2332        $Table->OnRow = array($this, 'ShowListOnRow');
    2433        $Table->Definition['Table'] = '(SELECT * FROM `Backup` WHERE `Server` = '.$Server->Id.')';
  • 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      {
  • trunk/www/view/client.php

    r55 r56  
    33class ClientView extends Module
    44{
     5  var $ItemListFormClass = array(
     6    'Title' => 'Verze klienta',
     7    'Table' => 'Client',
     8    'DefaultOrderColumn' => 'BuildNumber',
     9    'DefaultOrderDirection' => 1,
     10    'Items' => array(
     11      'Version' => array('Type' => 'String', 'Caption' => 'Verze', 'Default' => ''),
     12      'BuildNumber' => array('Type' => 'Integer', 'Caption' => 'Číslo sestavení', 'Default' => ''),
     13      'ReleaseDate' => array('Type' => 'Date', 'Caption' => 'Datum vydání', 'Default' => ''),
     14      'Title' => array('Type' => 'String', 'Caption' => 'Titulek', 'Default' => ''),
     15    ),
     16  );
     17 
    518  function ShowListOnRow($Row)
    619  {
     
    1427   
    1528    $Output = '<h4>Verze herního klienta</h4>';
    16     $Table = new Table('ClientList');
     29    $Table = new Table($this->ItemListFormClass);
    1730    $Table->OnRow = array($this, 'ShowListOnRow');
    1831    $Table->LoadValuesFromDatabase($this->Database);
  • trunk/www/view/debug.php

    r55 r56  
    33class DebugView extends Module
    44{
     5  var $ItemListFormClass = array(
     6    'Title' => 'Restarty',
     7    'Table' => 'Debug',
     8    'Items' => array(
     9      'Time' => array('Type' => 'String', 'Caption' => 'Čas', 'Default' => ''),
     10      'MangosVersion' => array('Type' => 'String', 'Caption' => 'Verze emulátoru', 'Default' => ''),
     11      'DbVersion' => array('Type' => 'String', 'Caption' => 'Verze databáze', 'Default' => ''),
     12      'MaxPlayerCount' => array('Type' => 'Integer', 'Caption' => 'Max. online hráčů', 'Default' => ''),
     13      'Uptime' => array('Type' => 'String', 'Caption' => 'Doba běhu', 'Default' => ''),
     14    ),
     15  );
     16  var $ItemFormClass = array(
     17    'Title' => 'Záznam restartu',
     18    'Table' => 'Debug',
     19    'Items' => array(
     20      'Time' => array('Type' => 'DateTime', 'Caption' => 'Čas', 'Default' => ''),
     21      'MangosVersion' => array('Type' => 'String', 'Caption' => 'Verze emulátoru', 'Default' => ''),
     22      'DbVersion' => array('Type' => 'String', 'Caption' => 'Verze databáze', 'Default' => ''),
     23      'MaxPlayerCount' => array('Type' => 'Integer', 'Caption' => 'Max. online hráčů', 'Default' => ''),
     24      'Uptime' => array('Type' => 'String', 'Caption' => 'Doba běhu', 'Default' => ''),
     25    ),
     26  );
     27 
    528  function ShowListOnRow($Row)
    629  {
     
    2043      {
    2144        $Output = '<h4>Ladící záznamy restartů</h4>';
    22         $Table = new Table('DebugList');
     45        $Table = new Table($this->ItemListFormClass);
    2346        $Table->OnRow = array($this, 'ShowListOnRow');
    2447        $Table->Definition['Table'] = '(SELECT * FROM Debug WHERE Server='.$_GET['Id'].')';
  • trunk/www/view/emulator.php

    r55 r56  
    33class EmulatorView extends Module
    44{
     5  var $ItemFormClass = array(
     6    'Title' => 'Emulátor',
     7    'Table' => 'Emulator',
     8    'Items' => array(
     9      'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''),
     10      'Version' => array('Type' => 'String', 'Caption' => 'Verze', 'Default' => ''),
     11      'Revision' => array('Type' => 'Integer', 'Caption' => 'Revize', 'Default' => 0),
     12      'Client' => array('Type' => 'Client', 'Caption' => 'Verze klienta', 'Default' => 0),
     13      'ScriptDev2Revision' => array('Type' => 'Integer', 'Caption' => 'Verze SD2', 'Default' => 0),
     14      'ScriptDev2PatchFileName' => array('Type' => 'String', 'Caption' => 'SD2 záplata', 'Default' => ''),
     15      'CommitHash' => array('Type' => 'String', 'Caption' => 'Commit HASH', 'Default' => ''),
     16    ),
     17  );
     18  var $ItemListFormClass = array(
     19    'Title' => 'Emulátory',
     20    'Table' => '(SELECT `Emulator`.`Name`, `Emulator`.`Id`, `Client`.`Version` AS `ClientVersion`, `Emulator`.`Revision`, `Emulator`.`ScriptDev2Revision`, `Emulator`.`ScriptDev2PatchFileName`, `Emulator`.`Version`, `Emulator`.`CommitHash` FROM `Emulator` JOIN `Client` ON `Client`.`Id` = `Emulator`.`Client` WHERE `Emulator`.`Enable` = 1)',
     21    'DefaultOrderColumn' => 'Revision',
     22    'DefaultOrderDirection' => 1,
     23    'Items' => array(
     24      'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''),
     25      'Version' => array('Type' => 'String', 'Caption' => 'Verze', 'Default' => ''),
     26      'Revision' => array('Type' => 'Integer', 'Caption' => 'Revize', 'Default' => 0),
     27      'ClientVersion' => array('Type' => 'Integer', 'Caption' => 'Verze klienta', 'Default' => 0),
     28      'ScriptDev2Revision' => array('Type' => 'Integer', 'Caption' => 'Verze SD2', 'Default' => 0),
     29      //'ScriptDev2PatchFileName' => array('Type' => 'String', 'Caption' => 'SD2 záplata', 'Default' => ''),
     30      //'CommitHash' => array('Type' => 'String', 'Caption' => 'Commit HASH', 'Default' => ''),
     31    ),
     32  );
     33
    534  function ItemList()
    635  {
     
    837   
    938    $Output = '<h4>Seznam verzí emulátoru</h4>';
    10     $Table = new Table('EmulatorList');
     39    $Table = new Table($this->ItemListFormClass);
    1140    $Table->Definition['Items']['Id'] = array('Type' => 'Hidden', 'Caption' => '', 'Default' => '');
    1241    $Table->LoadValuesFromDatabase($this->Database);
     
    3059    //$Server = new Server($this->Database, $Id);
    3160    $Output = '<h4>Podrobnosti emulátoru</h4>';
    32     $Form = new Form('EmulatorItem');
     61    $Form = new Form($this->ItemFormClass);
    3362    $Form->LoadValuesFromDatabase($Id);
    3463    $Output .= $Form->ShowTable();
     
    4877    if($this->System->Modules['User']->User['Role'] >= USER_ROLE_ADMINISTRATOR)
    4978    {
    50       $Form = new Form('EmulatorItem');
     79      $Form = new Form($this->ItemFormClass);
    5180      $Form->LoadValuesFromForm();
    5281      $Form->OnSubmit = '?Action=EmulatorAdd2';
     
    6089    if($this->System->Modules['User']->User['Role'] >= USER_ROLE_ADMINISTRATOR)
    6190    {
    62       $Form = new Form('EmulatorItem');
     91      $Form = new Form($this->ItemFormClass);
    6392      $Form->LoadValuesFromForm();
    6493      $Form->SaveValuesToDatabase(0);
  • trunk/www/view/news.php

    r55 r56  
    33class NewsView extends Module
    44{
     5  var $ItemFormClass = array(
     6    'Title' => 'Aktualita',
     7    'Table' => 'News',
     8    'Items' => array(
     9      'Title' => array('Type' => 'String', 'Caption' => 'Titulek', 'Default' => ''),
     10      'Content' => array('Type' => 'Text', 'Caption' => 'Obsah', 'Default' => ''),
     11    ),
     12  );
     13 
    514  function AddFinish()
    615  {
    716    if($this->System->Modules['User']->User['Role'] >= USER_ROLE_ADMINISTRATOR)
    817    {
    9       $Form = new Form('News');
     18      $Form = new Form($this->ItemFormClass);
    1019      $Form->LoadValuesFromForm();
    1120      $Form->Values['Time'] = 'NOW()';
     
    2130    if($this->System->Modules['User']->User['Role'] >= USER_ROLE_ADMINISTRATOR)
    2231    {
    23       $Form = new Form('News');
     32      $Form = new Form($this->ItemFormClass);
    2433      $Form->OnSubmit = '?Action=NewsAdd2';
    2534      $Output = $Form->ShowEditForm();
  • trunk/www/view/realm.php

    r55 r56  
    33class RealmView extends Module
    44{
     5  var $ItemFormClass = array(
     6    'Title' => 'Nastavení',
     7    'Table' => 'Svět',
     8    'SubmitText' => 'Uložit',
     9    'Items' => array(
     10      'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => 'WoW server'),
     11      'Description' => array('Type' => 'Text', 'Caption' => 'Popis', 'Default' => ''),
     12      'Type' => array('Type' => 'ServerType', 'Caption' => 'Typ', 'Default' => 0),
     13      'Database' => array('Type' => 'Database', 'Caption' => 'Databáze', 'Default' => 0),
     14      'Motd' => array('Type' => 'String', 'Caption' => 'Zpráva dne', 'Default' => 'Vítejte na free WoW serveru'),
     15      'RealmId' => array('Type' => 'Hidden', 'Caption' => 'Id', 'Default' => 0),
     16      'TimeCreate' => array('Type' => 'DateTime', 'Caption' => 'Datum založení', 'Default' => 'NOW()'),
     17      'NetworkPortWorldd' => array('Type' => 'Integer', 'Caption' => 'Port realmd', 'Default' => ''),
     18    ),
     19  );
     20  var $ItemListFormClass = array(
     21    'Title' => 'Světy',
     22    'Table' => '(SELECT `Client`.`Version`, `Realm`.`Name`, `Realm`.`Id`, `Server`.`Name` AS `ServerName`, `Realm`.`NetworkPortWorldd`, Realm.Online, Realm.CharacterOnlineCount, Realm.CharacterCount FROM `Realm` JOIN `Server` ON `Server`.`Id` = `Realm`.`Server` JOIN `Database` ON `Database`.`Id` = `Realm`.`Database` JOIN `Emulator` ON `Emulator`.`Id` = `Database`.`Emulator` JOIN `Client` ON `Client`.`Id` = `Emulator`.`Client`)',
     23    'Items' => array(
     24      'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''),
     25      'NetworkPortWorldd' => array('Type' => 'Integer', 'Caption' => 'Realmlist', 'Default' => ''),
     26      'Version' => array('Type' => 'Integer', 'Caption' => 'Verze', 'Default' => 0),
     27      'Online' => array('Type' => 'OnlineState', 'Caption' => 'Stav', 'Default' => 0),
     28      'CharacterOnlineCount' => array('Type' => 'Integer', 'Caption' => 'Hráčů online', 'Default' => 0),
     29      'CharacterCount' => array('Type' => 'Integer', 'Caption' => 'Postav', 0),
     30      'ServerName' => array('Type' => 'String', 'Caption' => 'Server', 'Default' => ''),
     31    ),
     32  );
     33
     34
    535  function ItemList()
    636  {
     
    1040    //$Realm->UpdateServerList();
    1141    $Output = '<h4>Seznam světů</h4>';
    12     $Table = new Table('RealmList');
     42    $Table = new Table($this->ItemListFormClass);
    1343    //$Table->OnRow = array($this, 'ShowRealmListOnRow');
    1444    $Table->Definition['Items']['Id'] = array('Type' => 'Hidden', 'Caption' => '', 'Default' => '');
  • trunk/www/view/server.php

    r55 r56  
    33class ServerView extends Module
    44{
     5  var $ViewFormClass = array(
     6    'Title' => 'Nastavení',
     7    'Table' => 'Server',
     8    'SubmitText' => 'Uložit',
     9    'Items' => array(
     10      'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => 'WoW server'),
     11      'Description' => array('Type' => 'Text', 'Caption' => 'Popis', 'Default' => ''),
     12      'Homepage' => array('Type' => 'Hyperlink', 'Caption' => 'Webové stránky', 'Default' => ''),
     13      'Database' => array('Type' => 'Database', 'Caption' => 'Databáze', 'Default' => 0),
     14      'ServerId' => array('Type' => 'Hidden', 'Caption' => 'Id', 'Default' => 0),
     15      'TimeCreate' => array('Type' => 'DateTime', 'Caption' => 'Datum založení', 'Default' => 'NOW()'),
     16      'NetworkPortRealmd' => array('Type' => 'Integer', 'Caption' => 'Port realmd', 'Default' => ''),
     17    ),
     18  );
     19  var $ItemListFormClass = array(
     20    'Title' => 'Server',
     21    'Table' => '(SELECT `Client`.`Version`, `Server`.`Name`, `Server`.`Homepage`, `Server`.`Id`, `Server`.`NetworkPortRealmd`, `User`.`Name` AS `UserName`, Server.Online, Server.CharacterOnlineCount, Server.CharacterCount, Server.AccountCount FROM `Server` JOIN `User` ON `User`.`Id` = `Server`.`User` JOIN `Database` ON `Database`.`Id` = `Server`.`Database` JOIN `Emulator` ON `Emulator`.`Id` = `Database`.`Emulator` JOIN `Client` ON `Client`.`Id` = `Emulator`.`Client`)',
     22    'Items' => array(
     23      'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''),
     24      'NetworkPortRealmd' => array('Type' => 'Integer', 'Caption' => 'Realmlist', 'Default' => ''),
     25      'Version' => array('Type' => 'Integer', 'Caption' => 'Verze', 'Default' => 0),
     26      'Online' => array('Type' => 'OnlineState', 'Caption' => 'Stav', 'Default' => 0),
     27      'CharacterOnlineCount' => array('Type' => 'Integer', 'Caption' => 'Hráčů online', 'Default' => 0),
     28      'AccountCount' => array('Type' => 'Integer', 'Caption' => 'Účtů', 'Default' => 0),
     29      'CharacterCount' => array('Type' => 'Integer', 'Caption' => 'Postav', 0),
     30      'UserName' => array('Type' => 'String', 'Caption' => 'Správce', 'Default' => ''),
     31    ),
     32  );
     33  var $CreateFormClass = array(
     34    'Title' => 'Nový server',
     35    'Table' => 'Server',
     36    'SubmitText' => 'Registrovat',
     37    'Items' => array(
     38      'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => 'WoW server'),
     39      'Description' => array('Type' => 'Text', 'Caption' => 'Popis', 'Default' => ''),
     40      'Homepage' => array('Type' => 'Hyperlink', 'Caption' => 'Webové stránky', 'Default' => ''),
     41      'Type' => array('Type' => 'ServerType', 'Caption' => 'Typ', 'Default' => 0),
     42      'Database' => array('Type' => 'Database', 'Caption' => 'Databáze', 'Default' => 0),
     43      'Motd' => array('Type' => 'String', 'Caption' => 'Zpráva dne', 'Default' => 'Vítejte na free WoW serveru'),
     44    ),
     45  );
     46  var $EditFormClass = array(
     47    'Title' => 'Nastavení',
     48    'Table' => 'Server',
     49    'SubmitText' => 'Uložit',
     50    'Items' => array(
     51      'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => 'WoW server'),
     52      'Description' => array('Type' => 'Text', 'Caption' => 'Popis', 'Default' => ''),
     53      'Homepage' => array('Type' => 'Hyperlink', 'Caption' => 'Webové stránky', 'Default' => ''),
     54      'Type' => array('Type' => 'ServerType', 'Caption' => 'Typ', 'Default' => 0),
     55      //'Database' => array('Type' => 'Database', 'Caption' => 'Databáze', 'Default' => 0),
     56      'Motd' => array('Type' => 'String', 'Caption' => 'Zpráva dne', 'Default' => 'Vítejte na free WoW serveru'),
     57      'ServerId' => array('Type' => 'Hidden', 'Caption' => 'Id', 'Default' => 0),
     58      //'TimeCreation' => array('Type' => 'DateTime', 'Caption' => 'Datum založení', 'Default' => 'NOW()'),
     59    ),
     60  );
     61  var $GameAccountNewFormClass = array(
     62    'Title' => 'Vytvoření nového herního účtu',
     63    'Table' => '',
     64    'Items' => array(
     65      'Name' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno', 'Default' => ''),
     66      'Password' => array('Type' => 'Password', 'Caption' => 'Heslo', 'Default' => ''),
     67      'Password2' => array('Type' => 'Password', 'Caption' => 'Potvrzení hesla', 'Default' => ''),
     68      'Email' => array('Type' => 'String', 'Caption' => 'E-mail', 'Default' => ''),
     69      'Expansion' => array('Type' => 'ServerExpansion', 'Caption' => 'Rozšíření', 'Default' => 2),
     70      'ServerId' => array('Type' => 'Hidden', 'Caption' => 'Id', 'Default' => 0),
     71    ),
     72  ); 
     73  var $SettingDetailedFormClass = array(
     74    'Title' => 'Podrobné nastavení serveru',
     75    'Table' => '',
     76    'Items' => array(
     77      'ServerId' => array('Type' => 'Hidden', 'Caption' => 'Id', 'Default' => 0),
     78      'SkipCinematics' => array('Type' => 'SkipCinematics', 'Caption' => 'Zobrazovat úvodní video', 'Default' => ''),
     79      'StartPlayerLevel' => array('Type' => 'Integer', 'Caption' => 'Počáteční úroveň hráčů', 'Default' => 1),
     80      'MaxPlayerLevel' => array('Type' => 'Integer', 'Caption' => 'Max. úroveň hráčů', 'Default' => 80),
     81      'StartHeroicPlayerLevel' => array('Type' => 'Integer', 'Caption' => 'Počáteční úroveň hrdinských postav', 'Default' => 55),
     82      'StartPlayerMoney' => array('Type' => 'Integer', 'Caption' => 'Počáteční množství peněz', 'Default' => 0),
     83      'StartHonorPoints' => array('Type' => 'Integer', 'Caption' => 'Počáteční počet bodů cti', 'Default' => 0),
     84      'MaxHonorPoints' => array('Type' => 'Integer', 'Caption' => 'Max. počet bodů cti', 'Default' => 75000),
     85      'StartArenaPoints' => array('Type' => 'Integer', 'Caption' => 'Počáteční počet bodů arén', 'Default' => 0),
     86      'MaxArenaPoints' => array('Type' => 'Integer', 'Caption' => 'Max. počet bodů arén', 'Default' => 5000),
     87      'MaxArenaPoints' => array('Type' => 'Integer', 'Caption' => 'Max. počet bodů arén', 'Default' => 5000),
     88      'InstantLogout' => array('Type' => 'SecurityLevel', 'Caption' => 'Povolit okamžitého odhlášení', 'Default' => 1),
     89      'DisableWaterBreath' => array('Type' => 'SecurityLevel', 'Caption' => 'Zakázat dýchání pod vodou', 'Default' => 1),         
     90      'AllFlightPaths' => array('Type' => 'Boolean', 'Caption' => 'Povoleny všechny létací cesty', 'Default' => 0),         
     91      'AlwaysMaxSkillForLevel' => array('Type' => 'Boolean', 'Caption' => 'Vždy max. dovednost na úroveň', 'Default' => 0),         
     92      'ActivateWeather' => array('Type' => 'Boolean', 'Caption' => 'Aktivní počasí', 'Default' => 1),         
     93      'CastUnstuck' => array('Type' => 'Boolean', 'Caption' => 'Povolit odblokovací kouzlo pomocí .start', 'Default' => 1),         
     94      'MinPetitionSigns' => array('Type' => 'Integer', 'Caption' => 'Min. počet podpisů k zápisu spolku', 'Default' => 9),         
     95      'MaxGroupXPDistance' => array('Type' => 'Integer', 'Caption' => 'Max. rozdíl XP ve skupině', 'Default' => 74),         
     96      'MailDeliveryDelay' => array('Type' => 'Integer', 'Caption' => 'Zpoždění doručení pošty', 'Default' => 3600),         
     97      'Event.Announce' => array('Type' => 'Boolean', 'Caption' => 'Ohlašování událostí', 'Default' => 0),         
     98      'AllowTwoSide.Accounts' => array('Type' => 'Boolean', 'Caption' => 'Povolit účty s postavami obou stran', 'Default' => 0),         
     99      'AllowTwoSide.Interaction.Chat' => array('Type' => 'Boolean', 'Caption' => 'Povolit komunikaci mezi stranami', 'Default' => 0),         
     100      'AllowTwoSide.Interaction.Channel' => array('Type' => 'Boolean', 'Caption' => 'Povolit kanály mezi stranami', 'Default' => 0),
     101      'AllowTwoSide.WhoList' => array('Type' => 'Boolean', 'Caption' => 'Povolit obě strany v seznamu přítomných', 'Default' => 0),               
     102    ),
     103  ); 
     104 
    5105  function ShowListOnRow($Row)
    6106  {
     
    18118    $Server->UpdateServerList();
    19119    $Output = '<h4>Seznam serverů</h4>';
    20     $Table = new Table('ServerList');
     120    $Table = new Table($this->ItemListFormClass);
    21121    $Table->OnRow = array($this, 'ShowListOnRow');
    22122    $Table->Definition['Items']['Id'] = array('Type' => 'Hidden', 'Caption' => '', 'Default' => '');
     
    51151    {
    52152    $Output = '<h4>Podrobnosti serveru</h4>';
    53     $Form = new Form('ServerView');
     153    $Form = new Form($this->ViewFormClass);
    54154    $Form->LoadValuesFromDatabase($Id);
    55155    $Form->Definition['Items']['Realmlist'] = array('Type' => 'String', 'Caption' => 'Adresa k připojení', 'Default' => '');   
     
    82182    $Output .= ' <a href="?Action=GameAccountRegister&amp;Id='.$Server->Id.'">Vytvoření herního účtu</a>';
    83183    $Output .= '</div>';
    84     } else $Output = $this->SystemMessage('Zobrazení serveru', 'Server se zadaným id nenalezen.');
     184   
     185    // Show realmlist
     186    $RealmView = new RealmView($this->Database, $this->System);
     187    $Output .= $RealmView->ItemList();
     188    } else $Output = $this->System->SystemMessage('Zobrazení serveru', 'Server se zadaným id nenalezen.');
    85189    return($Output);
    86190  }
     
    88192  function Add()
    89193  {
     194    global $Config;
     195   
    90196    $Output = '';
    91197    if($this->System->Modules['User']->User['Role'] >= USER_ROLE_USER)
     
    98204        $DbResult = $this->Database->query('SELECT COUNT(*) FROM Server WHERE User='.$this->System->Modules['User']->User['Id']);
    99205        $DbRow = $DbResult->fetch_row();
    100         if($DbRow[0] > 0) $Output .= $this->SystemMessage('Nový server', 'Lze vytvořit pouze jeden server pro každý uživatelský účet.');
     206        if($DbRow[0] > 0) $Output .= $this->System->SystemMessage('Nový server', 'Lze vytvořit pouze jeden server pro každý uživatelský účet.');
    101207        else
    102208        {
    103           $Form = new Form('ServerCreate');
     209          $Form = new Form($this->CreateFormClass);
    104210          $Form->LoadValuesFromForm();
    105211          $Form->OnSubmit = '?Action=ServerCreate';
     
    107213          $Output .= $Form->ShowEditForm();
    108214        }
    109       } else $Output .= $this->SystemMessage('Nový server', 'Nelze vytvářet další servery');
     215      } else $Output .= $this->System->SystemMessage('Nový server', 'Nelze vytvářet další servery');
    110216    } else $Output .= USER_BAD_ROLE;
    111217    return($Output);
     
    119225      $DbResult = $this->Database->query('SELECT COUNT(*) FROM Server WHERE User='.$this->System->Modules['User']->User['Id']);
    120226      $DbRow = $DbResult->fetch_row();
    121       if($DbRow[0] > 0) $Output .= $this->SystemMessage('Nový server', 'Lze vytvořit pouze jeden server pro každý uživatelský účet.');
     227      if($DbRow[0] > 0) $Output .= $this->System->SystemMessage('Nový server', 'Lze vytvořit pouze jeden server pro každý uživatelský účet.');
    122228      else
    123229      {
     
    129235        if($NewPortWorldd < $Config['BaseNetworkPortWorldd']) $NewPortWorldd = $Config['BaseNetworkPortWorldd'];
    130236           
    131         $Form = new Form('ServerCreate', array());
     237        $Form = new Form($this->CreateFormClass, array());
    132238        $Form->LoadValuesFromForm();
    133239        $this->Database->insert('Server', array('Name' => $Form->Values['Name'], 'Description' => $Form->Values['Description'], 'User' => $this->System->Modules['User']->User['Id'], 'Motd' => $Form->Values['Motd'], 'Homepage' => $Form->Values['Homepage'], 'Type' => $Form->Values['Type'], 'Database' => $Form->Values['Database'], 'NetworkPortWorldd' => $NewPortWorldd, 'NetworkPortRealmd' => $NewPortRealmd, 'Lock' => 1, 'TimeCreate' => 'NOW()'));
     
    135241        $Server = new Server($this->Database, $LastInsertId);
    136242        $Server->CreateDatabase();           
    137         $Output .= $this->SystemMessage('Vytvoření serveru', $Server->ImportDatabase(true));
     243        $Output .= $this->System->SystemMessage('Vytvoření serveru', $Server->ImportDatabase(true));
    138244        $Output .= $this->ShowTaskList();
    139245        //$UserOptions->LoadValuesFromDatabase($this->System->Modules['User']->User['Id']);
     
    151257    if(($this->System->Modules['User']->User['Id'] == $Server->Server['User']) or ($this->System->Modules['User']->User['Role'] >= USER_ROLE_ADMINISTRATOR))
    152258    {
    153       $Form = new Form('ServerEdit', array());
     259      $Form = new Form($this->EditFormClass, array());
    154260      $Form->LoadValuesFromForm();
    155261      $ServerId = $_POST['ServerId'];
    156262      unset($Form->Values['ServerId']);
    157       $Output .= $this->SystemMessage('Upravit server', 'Nastavení serveru uloženo.');
     263      $Output .= $this->System->SystemMessage('Upravit server', 'Nastavení serveru uloženo.');
    158264      $Form->SaveValuesToDatabase($_POST['ServerId']);
    159265      $Form->OnSubmit = '?Action=ServerSave';
     
    163269      $Form->Values['ServerId'] = $ServerId;
    164270      $Output .= $Form->ShowEditForm();
    165     } else $Output = $this->SystemMessage('Nastavení serveru', 'Nemáte oprávnění');
     271    } else $Output = $this->System->SystemMessage('Nastavení serveru', 'Nemáte oprávnění');
    166272    return($Output);
    167273  }
     
    173279    if(($this->System->Modules['User']->User['Id'] == $Server->Server['User']) or ($this->System->Modules['User']->User['Role'] >= USER_ROLE_ADMINISTRATOR))
    174280    {
    175       $Form = new Form('ServerEdit');
     281      $Form = new Form($this->EditFormClass);
    176282      $Form->LoadValuesFromDatabase($_GET['Id']);
    177283      $Form->Values['ServerId'] = $_GET['Id'];
     
    188294    if(($this->System->Modules['User']->User['Id'] == $Server->Server['User']) or ($this->System->Modules['User']->User['Role'] >= USER_ROLE_ADMINISTRATOR))
    189295    {
    190       $Form = new Form('ServerSettingDetailed');
     296      $Form = new Form($this->$SettingDetailedFormClass);
    191297      $EmulatorConfig = new MangosConfigurationFile($this->Database);
    192298      $EmulatorConfig->Load('../server/'.$Server->Id.'/etc/mangosd.conf');
     
    195301      $Form->OnSubmit = '?Action=ServerSaveDetailed';
    196302      $Output .= $Form->ShowEditForm();
    197     } else $this->SystemMessage('Nastavení serveru', 'Nemáte oprávnění');
     303    } else $this->System->SystemMessage('Nastavení serveru', 'Nemáte oprávnění');
    198304    return($Output);   
    199305  }
     
    205311    if(($this->System->Modules['User']->User['Id'] == $Server->Server['User']) or ($this->System->Modules['User']->User['Role'] >= USER_ROLE_ADMINISTRATOR))
    206312    {
    207       $Form = new Form('ServerSettingDetailed', array());
     313      $Form = new Form($this->$SettingDetailedFormClass, array());
    208314      $Form->LoadValuesFromForm();
    209315      $EmulatorConfig = new MangosConfigurationFile($this->Database);
     
    214320      $ServerId = $_POST['ServerId'];
    215321      unset($Form->Values['ServerId']);
    216       $Output .= $this->SystemMessage('Upravit server', 'Nastavení serveru uloženo.');
     322      $Output .= $this->System->SystemMessage('Upravit server', 'Nastavení serveru uloženo.');
    217323      //$Form->SaveValuesToDatabase($_POST['ServerId']);
    218324      $Form->OnSubmit = '?Action=ServerSaveDetailed';
     
    222328      $Form->Values['ServerId'] = $ServerId;
    223329      $Output .= $Form->ShowEditForm();
    224     } else $this->SystemMessage('Nastavení serveru', 'Nemáte oprávnění');
     330    } else $this->System->SystemMessage('Nastavení serveru', 'Nemáte oprávnění');
    225331    return($Output);
    226332  }
     
    234340      if(($this->System->Modules['User']->User['Id'] == $Server->Server['User']) or ($this->System->Modules['User']->User['Role'] >= USER_ROLE_ADMINISTRATOR))
    235341      {
    236         $Output .= $this->SystemMessage('Spuštění serveru', $Server->Start());
     342        $Output .= $this->System->SystemMessage('Spuštění serveru', $Server->Start());
    237343        $Output .= $this->ShowTaskList();
    238       } else $this->SystemMessage('Spuštění serveru', 'Nemáte oprávnění');
     344      } else $this->System->SystemMessage('Spuštění serveru', 'Nemáte oprávnění');
    239345    } else $Output .= USER_BAD_ROLE;
    240346    return($Output);
     
    249355      if(($this->System->Modules['User']->User['Id'] == $Server->Server['User']) or ($this->System->Modules['User']->User['Role'] >= USER_ROLE_ADMINISTRATOR))
    250356      {
    251         $Output .= $this->SystemMessage('Zastavení serveru', $Server->Stop());
     357        $Output .= $this->System->SystemMessage('Zastavení serveru', $Server->Stop());
    252358        $Output .= $this->ShowTaskList();
    253       } else $this->SystemMessage('Zastavení serveru', 'Nemáte oprávnění');
     359      } else $this->System->SystemMessage('Zastavení serveru', 'Nemáte oprávnění');
    254360    } else $Output .= USER_BAD_ROLE;
    255361    return($Output);
     
    258364  function AccountCreate()
    259365  {
    260     $Form = new Form('GameAccountNew');
     366    $Form = new Form($this->GameAccountNewFormClass);
    261367    $Form->LoadValuesFromForm();
    262368    $Form->Values['ServerId'] = $_GET['Id'];
     
    268374  function AccountCreateFinish()
    269375  {
    270     $Form = new Form('GameAccountNew');
     376    $Form = new Form($this->GameAccountNewFormClass);
    271377    $Form->LoadValuesFromForm();
    272378    $Server = new Server($this->Database, $Form->Values['ServerId']);
    273     $Output = $this->SystemMessage('Vytvoření herního účtu', $Server->NewAccount($Form->Values['Name'], $Form->Values['Password'], $Form->Values['Password2'], $Form->Values['Email'], $Form->Values['Expansion']));
     379    $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']));
    274380    $Output .= '<a href="?Action=GameAccountRegister&amp;Id='.$Form->Values['ServerId'].'">Zpět k zadání údajů</a>';
    275381    return($Output);
  • trunk/www/view/task.php

    r55 r56  
    33class TaskView extends Module
    44{
     5  var $ItemListFormClass = array(
     6    'Title' => 'Seznam úloh',
     7    'Table' => 'Task',
     8    'DefaultOrderColumn' => 'TimeCreate',
     9    'DefaultOrderDirection' => 1,
     10    'Items' => array(
     11      'TimeCreate' => array('Type' => 'DateTime', 'Caption' => 'Čas vytvoření', 'Default' => ''),
     12      'Title' => array('Type' => 'String', 'Caption' => 'Akce', 'Default' => ''),
     13      'State' => array('Type' => 'TaskState', 'Caption' => 'Stav', 'Default' => ''),
     14      'Duration' => array('Type' => 'String', 'Caption' => 'Trvání', 'Default' => ''),
     15    ),
     16  );
     17 
    518  function ShowListOnRow($Row)
    619  {
     
    1629    {
    1730      $Output = '<h4>Fronta úloh</h4>';
    18       $Table = new Table('TaskList');
     31      $Table = new Table($this->ItemListFormClass);
    1932      $Table->OnRow = array($this, 'ShowListOnRow');
    2033      $Table->Definition['Table'] = '(SELECT (COALESCE(UNIX_TIMESTAMP(TimeEnd), UNIX_TIMESTAMP(NOW())) - UNIX_TIMESTAMP(TimeStart)) AS Duration, TimeCreate, Title, State FROM Task WHERE User='.$this->System->Modules['User']->User['Id'].' ORDER BY Id DESC)';
     
    2235      $Output .= $Table->Show();
    2336      $Output .= '<br /><div style="text-align: center;"><a href="?Action=TaskList">Obnovit pohled</a></dev>';     
    24     } else $Output .= USER_BAD_ROLE;
     37    } else $Output = USER_BAD_ROLE;
    2538    return($Output);
    2639  }
  • trunk/www/view/user.php

    r55 r56  
    33class UserView extends Module
    44{
     5  var $OptionsFormClass = array(
     6    'Title' => 'Základní nastavení',
     7    'Table' => 'User',
     8    'SubmitText' => 'Uložit',
     9    'Items' => array(
     10      'Login' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno', 'Default' => ''),
     11      'Password' => array('Type' => 'Password', 'Caption' => 'Heslo', 'Default' => ''),
     12      'Name' => array('Type' => 'String', 'Caption' => 'Zobrazované jméno', 'Default' => ''),
     13      'Email' => array('Type' => 'String', 'Caption' => 'E-mail', 'Default' => ''),
     14      //'PhoneNumber' => array('Type' => 'String', 'Caption' => 'Telefón', 'Default' => ''),
     15      //'ICQ' => array('Type' => 'String', 'Caption' => 'ICQ', 'Default' => ''),
     16    ),
     17  );
     18  var $RegisterFormClass = array(
     19    'Title' => 'Registrace uživatele',
     20    'SubmitText' => 'Registrovat',
     21    'Table' => 'User',
     22    'Items' => array(
     23      'Login' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno', 'Default' => ''),
     24      'Password' => array('Type' => 'Password', 'Caption' => 'Heslo', 'Default' => ''),
     25      'Password2' => array('Type' => 'Password', 'Caption' => 'Potvrzení hesla', 'Default' => ''),
     26      'Name' => array('Type' => 'String', 'Caption' => 'Zobrazované jméno', 'Default' => ''),
     27      'Email' => array('Type' => 'String', 'Caption' => 'E-mail', 'Default' => ''),
     28      //'PhoneNumber' => array('Type' => 'String', 'Caption' => 'Telefón', 'Default' => ''),
     29      //'ICQ' => array('Type' => 'String', 'Caption' => 'ICQ', 'Default' => ''),
     30    ),
     31  );
     32  var $PasswordRecoveryFormClass = array(
     33    'Title' => 'Obnova hesla',
     34    'SubmitText' => 'Obnovit',
     35    'Table' => '',
     36    'Items' => array(
     37      'Name' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno', 'Default' => ''),
     38      'Email' => array('Type' => 'String', 'Caption' => 'E-mail', 'Default' => ''),
     39    ),
     40  ); 
     41  var $LoginFormClass = array(
     42    'Title' => 'Přihlášení uživatele',
     43    'SubmitText' => 'Přihlásit',
     44    'Table' => '',
     45    'Items' => array(
     46      'Username' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno', 'Default' => ''),
     47      'Password' => array('Type' => 'Password', 'Caption' => 'Heslo', 'Default' => ''),
     48    ),
     49  );
     50 
    551  function LoginForm()
    652  {
    753    global $Config;
    854   
    9     $Form = new Form('UserLogin');
     55    $Form = new Form($this->LoginFormClass);
    1056    $Form->OnSubmit = '?Action=Login';
    1157    $Output = $Form->ShowEditForm();
     
    1965  function LoginResult()
    2066  {
    21     $Form = new Form('UserLogin');
     67    $Form = new Form($this->LoginFormClass);
    2268    $Form->OnSubmit = '?Action=Login';
    2369    $Form->LoadValuesFromForm();
     
    4086    if($Config['Web']['UserRegistrationEnabled'])
    4187    {
    42       $Form = new Form('UserRegister', array());
     88      $Form = new Form($this->RegisterFormClass, array());
    4389      $Form->LoadValuesFromForm();
    4490      $Result = $this->System->Modules['User']->Register($Form->Values['Login'], $Form->Values['Password'], $Form->Values['Password2'], $Form->Values['Email'], $Form->Values['Name']);
     
    62108  function PasswordRecoveryFinish()
    63109  {
    64     $Form = new Form('PasswordRecovery');
     110    $Form = new Form($this->PasswordRecoveryFormClass);
    65111    $Form->LoadValuesFromForm();
    66112    $Result = $this->System->Modules['User']->PasswordRecoveryRequest($Form->Values['Name'], $Form->Values['Email']);
     
    75121  function PasswordRecovery()
    76122  {
    77     $Form = new Form('PasswordRecovery');
     123    $Form = new Form($this->PasswordRecoveryFormClass);
    78124    $Form->OnSubmit = '?Action=PasswordRecovery2';
    79125    $Output = $Form->ShowEditForm();
     
    90136  function Options()
    91137  {
    92     $UserOptions = new Form('UserOptions');
     138    $UserOptions = new Form($this->OptionsFormClass);
    93139    $UserOptions->LoadValuesFromDatabase($this->System->Modules['User']->User['Id']);
    94140    $UserOptions->OnSubmit = '?Action=UserOptionsSave';
     
    99145  function OptionsSave()
    100146  {
    101     $UserOptions = new Form('UserOptions', array());
     147    $UserOptions = new Form($this->OptionsFormClass, array());
    102148    $UserOptions->LoadValuesFromForm();
    103149    $UserOptions->SaveValuesToDatabase($this->System->Modules['User']->User['Id']);
     
    116162    if($Config['Web']['UserRegistrationEnabled'])
    117163    {
    118       $Form = new Form('UserRegister');
     164      $Form = new Form($this->RegisterFormClass);
    119165      $Form->LoadValuesFromForm();
    120166      $Form->OnSubmit = '?Action=UserRegisterSave';
Note: See TracChangeset for help on using the changeset viewer.