Changeset 16 for trunk/www/form_classes.php
- Timestamp:
- Jun 12, 2009, 8:47:16 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/form_classes.php
r14 r16 76 76 'ServerList' => array( 77 77 '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', 79 79 'Items' => array( 80 80 'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''), … … 83 83 'Version' => array('Type' => 'Integer', 'Caption' => 'Verze', 'Default' => 0), 84 84 'Online' => array('Type' => 'OnlineState', 'Caption' => 'Stav', 'Default' => 0), 85 'Character Count' => array('Type' => 'Integer', 'Caption' => 'Hráčů online', 'Default' => 0),85 'CharacterOnlineCount' => array('Type' => 'Integer', 'Caption' => 'Hráčů online', 'Default' => 0), 86 86 'AccountCount' => array('Type' => 'Integer', 'Caption' => 'Účtů', 'Default' => 0), 87 87 'CharacterCount' => array('Type' => 'Integer', 'Caption' => 'Postav', 0),
Note:
See TracChangeset
for help on using the changeset viewer.