Changeset 675
- Timestamp:
- Jul 21, 2014, 11:20:43 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/FormClasses.php
r674 r675 450 450 'Filter' => '1', 451 451 ), 452 'TDeviceListAPI' => array( 453 'Type' => 'ManyToOne', 454 'Table' => 'NetworkDevice', 455 'Id' => 'Id', 456 'Ref' => 'API', 457 'Filter' => '1', 458 ), 452 459 'TInterfaceList' => array( 453 460 'Type' => 'ManyToOne', … … 600 607 'Type' => 'Reference', 601 608 'Table' => 'Menu', 609 'Id' => 'Id', 610 'Name' => 'Name', 611 'Filter' => '1', 612 ), 613 'TDeviceAPIType' => array( 614 'Type' => 'Reference', 615 'Table' => 'DeviceAPIType', 602 616 'Id' => 'Id', 603 617 'Name' => 'Name', -
trunk/Application/Version.php
r674 r675 1 1 <?php 2 2 3 $Revision = 67 4; // Subversion revision3 $Revision = 675; // Subversion revision 4 4 $DatabaseRevision = 674; // SQL structure revision 5 5 $ReleaseTime = strtotime('2014-07-22'); -
trunk/Modules/Network/Network.php
r674 r675 158 158 'LoginName' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno', 'Default' => '', 'Null' => true), 159 159 'LoginPassword' => array('Type' => 'String', 'Caption' => 'Přihlašovací heslo', 'Default' => '', 'Null' => true), 160 'API' => array('Type' => 'TDeviceAPIType', 'Caption' => 'API', 'Default' => '', 'Null' => true), 160 161 ), 161 162 'Actions' => array( … … 265 266 'Consumption' => array('Type' => 'Integer', 'Caption' => 'Spotřeba', 'Default' => '0', 'ReadOnly' => true, 'Suffix' => 'Wattů'), 266 267 'UsersOverheads' => array('Type' => 'Integer', 'Caption' => 'Podílníků', 'Default' => '0', 'ReadOnly' => true), 268 ), 269 )); 270 $this->System->FormManager->RegisterClass('DeviceAPIType', array( 271 'Title' => 'Typ API zařízení', 272 'Table' => 'DeviceAPIType', 273 'Items' => array( 274 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''), 275 'Devices' => array('Type' => 'TDeviceListAPI', 'Caption' => 'Zařízení', 'Default' => ''), 267 276 ), 268 277 ));
Note:
See TracChangeset
for help on using the changeset viewer.