Changeset 538 for trunk/Modules/NetworkConfig/NetworkConfig.php
- Timestamp:
- May 18, 2013, 8:21:50 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/NetworkConfig/NetworkConfig.php
r522 r538 27 27 { 28 28 parent::Start(); 29 $this->System->FormManager->RegisterClass('NetworkConfiguration', array( 30 'Title' => 'Restart sítových služeb', 31 'Table' => 'NetworkConfiguration', 32 'Items' => array( 33 'Caption' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''), 34 'Execute' => array('Type' => 'String', 'Caption' => 'Povely', 'Default' => ''), 35 'Changed' => array('Type' => 'TNetworkConfigurationState', 'Caption' => 'Stav', 'Default' => 0), 36 'LastTime' => array('Type' => 'DateTime', 'Caption' => 'Naposledy spuštěno', 'ReadOnly' => true), 37 'ExecutionTime' => array('Type' => 'Integer', 'Caption' => 'Doba běhu', 'Default' => '0', 'Suffix' => 'sekund', 'ReadOnly' => true), 38 'Enabled' => array('Type' => 'Boolean', 'Caption' => 'Povoleno', 'Default' => '0'), 39 'Period' => array('Type' => 'Integer', 'Caption' => 'Min. perioda', 'Default' => '60', 'Suffix' => 'sekund'), 40 ), 41 'ItemActions' => array( 42 array('Caption' => 'Záznam', 'URL' => '/is/?a=view&t=NetworkConfigurationLog'), 43 ), 44 )); 45 $this->System->FormManager->RegisterClass('NetworkConfigurationLog', array( 46 'Title' => 'Záznam restartu sítových služeb', 47 'Table' => 'NetworkConfiguration', 48 'Items' => array( 49 'Caption' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''), 50 'Log' => array('Type' => 'Text', 'Caption' => 'Záznam', 'Default' => '', 'ReadOnly' => true), 51 ), 52 )); 53 29 54 } 30 55 }
Note:
See TracChangeset
for help on using the changeset viewer.