Ignore:
Timestamp:
Jun 12, 2009, 8:47:16 AM (15 years ago)
Author:
george
Message:
  • Přidáno: Funkce pro vytvoření zálohy a obnovení databáze ze zálohy.
  • Upraveno: Funkce přidávání úloh do fronty přesunuta do samostatné třídy Task.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/form_classes.php

    r14 r16  
    7676  'ServerList' => array(
    7777    'Title' => 'Server',
    78     'Table' => '(SELECT `ClientVersion`.`Version`, `Server`.`Name`, `Server`.`Id`, `Server`.`NetworkPortRealmd`, `User`.`Name` AS `UserName` FROM `Server` JOIN `User` ON `User`.`Id` = `Server`.`User` JOIN `Database` ON `Database`.`Id` = `Server`.`Database` JOIN `Emulator` ON `Emulator`.`Id` = `Database`.`Emulator` JOIN `ClientVersion` ON `ClientVersion`.`Id` = `Emulator`.`ClientVersion`) AS T',
     78    'Table' => '(SELECT `ClientVersion`.`Version`, `Server`.`Name`, `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 `ClientVersion` ON `ClientVersion`.`Id` = `Emulator`.`ClientVersion`) AS T',
    7979    'Items' => array(
    8080      'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''),
     
    8383      'Version' => array('Type' => 'Integer', 'Caption' => 'Verze', 'Default' => 0),
    8484      'Online' => array('Type' => 'OnlineState', 'Caption' => 'Stav', 'Default' => 0),
    85       'CharacterCount' => array('Type' => 'Integer', 'Caption' => 'Hráčů online', 'Default' => 0),
     85      'CharacterOnlineCount' => array('Type' => 'Integer', 'Caption' => 'Hráčů online', 'Default' => 0),
    8686      'AccountCount' => array('Type' => 'Integer', 'Caption' => 'Účtů', 'Default' => 0),
    8787      'CharacterCount' => array('Type' => 'Integer', 'Caption' => 'Postav', 0),
Note: See TracChangeset for help on using the changeset viewer.