Changeset 54 for trunk/www/form_classes.php
- Timestamp:
- Aug 3, 2009, 8:44:23 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/form_classes.php
r46 r54 83 83 'Description' => array('Type' => 'Text', 'Caption' => 'Popis', 'Default' => ''), 84 84 'Homepage' => array('Type' => 'Hyperlink', 'Caption' => 'Webové stránky', 'Default' => ''), 85 'Type' => array('Type' => 'ServerType', 'Caption' => 'Typ', 'Default' => 0),86 85 'Database' => array('Type' => 'Database', 'Caption' => 'Databáze', 'Default' => 0), 87 'Motd' => array('Type' => 'String', 'Caption' => 'Zpráva dne', 'Default' => 'Vítejte na free WoW serveru'),88 86 'ServerId' => array('Type' => 'Hidden', 'Caption' => 'Id', 'Default' => 0), 89 87 'TimeCreate' => array('Type' => 'DateTime', 'Caption' => 'Datum založení', 'Default' => 'NOW()'), … … 103 101 'CharacterCount' => array('Type' => 'Integer', 'Caption' => 'Postav', 0), 104 102 'UserName' => array('Type' => 'String', 'Caption' => 'Správce', 'Default' => ''), 103 ), 104 ), 105 'RealmView' => array( 106 'Title' => 'Nastavení', 107 'Table' => 'Svět', 108 'SubmitText' => 'Uložit', 109 'Items' => array( 110 'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => 'WoW server'), 111 'Description' => array('Type' => 'Text', 'Caption' => 'Popis', 'Default' => ''), 112 'Type' => array('Type' => 'ServerType', 'Caption' => 'Typ', 'Default' => 0), 113 'Database' => array('Type' => 'Database', 'Caption' => 'Databáze', 'Default' => 0), 114 'Motd' => array('Type' => 'String', 'Caption' => 'Zpráva dne', 'Default' => 'Vítejte na free WoW serveru'), 115 'RealmId' => array('Type' => 'Hidden', 'Caption' => 'Id', 'Default' => 0), 116 'TimeCreate' => array('Type' => 'DateTime', 'Caption' => 'Datum založení', 'Default' => 'NOW()'), 117 'NetworkPortWorldd' => array('Type' => 'Integer', 'Caption' => 'Port realmd', 'Default' => ''), 118 ), 119 ), 120 'RealmList' => array( 121 'Title' => 'Světy', 122 '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`)', 123 'Items' => array( 124 'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''), 125 'NetworkPortWorldd' => array('Type' => 'Integer', 'Caption' => 'Realmlist', 'Default' => ''), 126 'Version' => array('Type' => 'Integer', 'Caption' => 'Verze', 'Default' => 0), 127 'Online' => array('Type' => 'OnlineState', 'Caption' => 'Stav', 'Default' => 0), 128 'CharacterOnlineCount' => array('Type' => 'Integer', 'Caption' => 'Hráčů online', 'Default' => 0), 129 'CharacterCount' => array('Type' => 'Integer', 'Caption' => 'Postav', 0), 130 'ServerName' => array('Type' => 'String', 'Caption' => 'Server', 'Default' => ''), 105 131 ), 106 132 ),
Note:
See TracChangeset
for help on using the changeset viewer.