Changeset 430 for trunk/form_classes.php
- Timestamp:
- Oct 11, 2012, 7:16:33 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/form_classes.php
r429 r430 7 7 'Items' => array( 8 8 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''), 9 'Type' => array('Type' => 'TNetworkDeviceType', 'Caption' => 'Typ', 'Default' => '0'), 10 'Member' => array('Type' => 'TMember', 'Caption' => 'Zákazník', 'Default' => '0'), 11 'Location' => array('Type' => 'TMember', 'Caption' => 'Umístění', 'Default' => '0'), 9 12 'Used' => array('Type' => 'Boolean', 'Caption' => 'Použito', 'Default' => '1'), 10 13 'Online' => array('Type' => 'Boolean', 'Caption' => 'Běží', 'Default' => '0'), 11 14 'LastOnline' => array('Type' => 'DateTime', 'Caption' => 'Naposledy běželo', 'Default' => ''), 12 15 'PermanentOnline' => array('Type' => 'Boolean', 'Caption' => 'Běží stále', 'Default' => '0'), 13 'Member' => array('Type' => 'TMember', 'Caption' => 'Zákazník', 'Default' => '0'), 14 'Location' => array('Type' => 'TMember', 'Caption' => 'Umístění', 'Default' => '0'), 16 ), 17 ), 18 'NetworkDeviceType' => array( 19 'Title' => 'Typ síťového zařízení', 20 'Table' => 'NetworkDeviceType', 21 'Items' => array( 22 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''), 23 'ShowOnline' => array('Type' => 'Boolean', 'Caption' => 'Ukázat online', 'Default' => '0'), 24 'IconName' => array('Type' => 'String', 'Caption' => 'Jméno ikony', 'Default' => '0'), 25 ), 26 ), 27 'NetworkInterface' => array( 28 'Title' => 'Síťové rozhraní', 29 'Table' => 'NetworkInterface', 30 'Items' => array( 31 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''), 32 'Type' => array('Type' => 'TNetworkInterfaceType', 'Caption' => 'Typ', 'Default' => '0'), 33 'MAC' => array('Type' => 'String', 'Caption' => 'Fyzická adresa (MAC)', 'Default' => ''), 34 'LocalIP' => array('Type' => 'String', 'Caption' => 'IPv4', 'Default' => ''), 35 'IPv6' => array('Type' => 'String', 'Caption' => 'IPv6', 'Default' => ''), 36 'ExternalIP' => array('Type' => 'String', 'Caption' => 'Veřejná IPv4', 'Default' => '0'), 37 'Device' => array('Type' => 'TNetworkDevice', 'Caption' => 'Zařízení', 'Default' => ''), 38 'Online' => array('Type' => 'Boolean', 'Caption' => 'Běží', 'Default' => '0'), 39 'LastOnline' => array('Type' => 'DateTime', 'Caption' => 'Naposledy běželo', 'Default' => ''), 40 ), 41 ), 42 'NetworkInterfaceType' => array( 43 'Title' => 'Typ síťového rozhraní', 44 'Table' => 'NetworkInterfaceType', 45 'Items' => array( 46 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''), 47 'MaxSpeed' => array('Type' => 'Integer', 'Caption' => 'Max. rychlost', 'Default' => '0'), 48 'FullDuplex' => array('Type' => 'Boolean', 'Caption' => 'Plně duplexní', 'Default' => '0'), 49 'Color' => array('Type' => 'Color', 'Caption' => 'Barva', 'Default' => '0'), 15 50 ), 16 51 ), … … 131 166 'Table' => 'Product', 132 167 'Items' => array( 133 ' name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''),134 ' price' => array('Type' => 'Float', 'Caption' => 'Cena', 'Default' => 0),135 ' count' => array('Type' => 'Integer', 'Caption' => 'Počet', 'Default' => 1),136 ' date' => array('Type' => 'Time', 'Caption' => 'Datum zakoupení', 'Default' => 'Now'),137 ' segment' => array('Type' => 'TNetworkSegment', 'Caption' => 'Segment sítě', 'Default' => 0),138 ' date' => array('Type' => 'Time', 'Caption' => 'Datum zakoupení', 'Default' => 'Now'),139 ' used' => array('Type' => 'TNetworkDeviceState', 'Caption' => 'Stav', 'Default' => 0),140 ' consumption' => array('Type' => 'Integer', 'Caption' => 'Spotřeba', 'Default' => 0),141 ' user' => array('Type' => 'TFinanceSubject', 'Caption' => 'Subjekt', 'Default' => 0),142 ' info' => array('Type' => 'String', 'Caption' => 'Poznámky', 'Default' => ''),143 ' shop' => array('Type' => 'String', 'Caption' => 'Obchod', 'Default' => ''),144 ' device_id' => array('Type' => 'String', 'Caption' => 'Sériové číslo', 'Default' => ''),168 'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''), 169 'Price' => array('Type' => 'Float', 'Caption' => 'Cena', 'Default' => 0), 170 'Count' => array('Type' => 'Integer', 'Caption' => 'Počet', 'Default' => 1), 171 'Date' => array('Type' => 'Time', 'Caption' => 'Datum zakoupení', 'Default' => 'Now'), 172 'Segment' => array('Type' => 'TNetworkSegment', 'Caption' => 'Segment sítě', 'Default' => 0), 173 'Date' => array('Type' => 'Time', 'Caption' => 'Datum zakoupení', 'Default' => 'Now'), 174 'Used' => array('Type' => 'TNetworkDeviceState', 'Caption' => 'Stav', 'Default' => 0), 175 'Consumption' => array('Type' => 'Integer', 'Caption' => 'Spotřeba', 'Default' => 0), 176 'User' => array('Type' => 'TFinanceSubject', 'Caption' => 'Subjekt', 'Default' => 0), 177 'Info' => array('Type' => 'String', 'Caption' => 'Poznámky', 'Default' => ''), 178 'Shop' => array('Type' => 'String', 'Caption' => 'Obchod', 'Default' => ''), 179 'DeviceId' => array('Type' => 'String', 'Caption' => 'Sériové číslo', 'Default' => ''), 145 180 ), 146 181 ), … … 227 262 'TNetworkDevice' => array( 228 263 'Type' => 'Reference', 229 'Table' => 'Product', 230 'Id' => 'id', 231 'Name' => 'name', 264 'Table' => 'NetworkDevice', 265 'Id' => 'Id', 266 'Name' => 'Name', 267 'Filter' => '1', 268 ), 269 'TNetworkDeviceType' => array( 270 'Type' => 'Reference', 271 'Table' => 'NetworkDeviceType', 272 'Id' => 'Id', 273 'Name' => 'Name', 232 274 'Filter' => '1', 233 275 ), … … 235 277 'Type' => 'Reference', 236 278 'Table' => 'NetworkInterface', 279 'Id' => 'Id', 280 'Name' => 'Name', 281 'Filter' => '1', 282 ), 283 'TNetworkInterfaceType' => array( 284 'Type' => 'Reference', 285 'Table' => 'NetworkInterfaceType', 237 286 'Id' => 'Id', 238 287 'Name' => 'Name', … … 262 311 ); 263 312 313 264 314 ?>
Note:
See TracChangeset
for help on using the changeset viewer.