Changeset 24 for trunk/www/form_classes.php
- Timestamp:
- Jun 12, 2009, 11:40:00 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/form_classes.php
r22 r24 77 77 'ServerList' => array( 78 78 'Title' => 'Server', 79 'Table' => '(SELECT `Client Version`.`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 'Table' => '(SELECT `Client`.`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 `Client` ON `Client`.`Id` = `Emulator`.`Client`)', 80 80 'Items' => array( 81 81 'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''), … … 90 90 ), 91 91 'EmulatorList' => array( 92 'Title' => 'Emulátor ',93 'Table' => '(SELECT `Emulator`.`Name`, `Emulator`.`Id`, `Client Version`.`Version` AS `ClientVersion`, `Emulator`.`Revision`, `Emulator`.`ScriptDev2Revision`, `Emulator`.`ScriptDev2PatchFileName`, `Emulator`.`CommitHash` FROM `Emulator` JOIN `ClientVersion` ON `ClientVersion`.`Id` = `Emulator`.`ClientVersion`) AS T',92 'Title' => 'Emulátory', 93 'Table' => '(SELECT `Emulator`.`Name`, `Emulator`.`Id`, `Client`.`Version` AS `ClientVersion`, `Emulator`.`Revision`, `Emulator`.`ScriptDev2Revision`, `Emulator`.`ScriptDev2PatchFileName`, `Emulator`.`CommitHash` FROM `Emulator` JOIN `Client` ON `Client`.`Id` = `Emulator`.`Client`)', 94 94 'Items' => array( 95 95 'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''), … … 107 107 'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''), 108 108 'Revision' => array('Type' => 'Integer', 'Caption' => 'Revize', 'Default' => 0), 109 //'Client Version' => array('Type' => 'PointerOneToOne', 'Caption' => 'Verze klienta', 'Default' => 0),109 //'Client' => array('Type' => 'PointerOneToOne', 'Caption' => 'Verze klienta', 'Default' => 0), 110 110 'ScriptDev2Revision' => array('Type' => 'Integer', 'Caption' => 'Verze SD2', 'Default' => 0), 111 111 'ScriptDev2PatchFileName' => array('Type' => 'String', 'Caption' => 'SD2 záplata', 'Default' => ''), 112 112 'CommitHash' => array('Type' => 'String', 'Caption' => 'Commit HASH', 'Default' => ''), 113 ), 114 ), 115 'BackupList' => array( 116 'Title' => 'Zálohy', 117 'Table' => '(SELECT * FROM `Backup`)', 118 'Items' => array( 119 'Time' => array('Type' => 'DateTime', 'Caption' => 'Čas', 'Default' => ''), 120 'Description' => array('Type' => 'String', 'Caption' => 'Popis', 'Default' => ''), 121 ), 122 ), 123 'ClientList' => array( 124 'Title' => 'Verze klienta', 125 'Table' => 'Client', 126 'Items' => array( 127 'Version' => array('Type' => 'String', 'Caption' => 'Verze', 'Default' => ''), 128 'BuildNumber' => array('Type' => 'Integer', 'Caption' => 'Čislo sestavení', 'Default' => ''), 129 'ReleaseDate' => array('Type' => 'Date', 'Caption' => 'Datum vydání', 'Default' => ''), 130 ), 131 ), 132 'DebugList' => array( 133 'Title' => 'Restarty', 134 'Table' => 'Debug', 135 'Items' => array( 136 'Time' => array('Type' => 'String', 'Caption' => 'Čas', 'Default' => ''), 137 'MangosVersion' => array('Type' => 'String', 'Caption' => 'Verze emulátoru', 'Default' => ''), 138 'DbVersion' => array('Type' => 'String', 'Caption' => 'Verze databáze', 'Default' => ''), 139 'MaxPlayerCount' => array('Type' => 'Integer', 'Caption' => 'Max. online hráčů', 'Default' => ''), 140 'Uptime' => array('Type' => 'String', 'Caption' => 'Doba běhu', 'Default' => ''), 141 ), 142 ), 143 'DebugItem' => array( 144 'Title' => 'Záznam restartu', 145 'Table' => 'Debug', 146 'Items' => array( 147 'Time' => array('Type' => 'DateTime', 'Caption' => 'Čas', 'Default' => ''), 148 'MangosVersion' => array('Type' => 'String', 'Caption' => 'Verze emulátoru', 'Default' => ''), 149 'DbVersion' => array('Type' => 'String', 'Caption' => 'Verze databáze', 'Default' => ''), 150 'MaxPlayerCount' => array('Type' => 'Integer', 'Caption' => 'Max. online hráčů', 'Default' => ''), 151 'Uptime' => array('Type' => 'String', 'Caption' => 'Doba běhu', 'Default' => ''), 113 152 ), 114 153 ),
Note:
See TracChangeset
for help on using the changeset viewer.