- Timestamp:
- Jan 8, 2016, 11:00:11 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/NetworkConfigRouterOS/NetworkConfigRouterOS.php
r738 r781 4 4 include_once(dirname(__FILE__).'/RouterboardAPI.php'); 5 5 include_once(dirname(__FILE__).'/Generators/Common.php'); 6 7 // Config actions 8 include_once(dirname(__FILE__).'/Generators/Signal.php'); 9 include_once(dirname(__FILE__).'/Generators/DHCP.php'); 10 include_once(dirname(__FILE__).'/Generators/DNS.php'); 11 include_once(dirname(__FILE__).'/Generators/Netwatch.php'); 12 include_once(dirname(__FILE__).'/Generators/NetwatchImport.php'); 13 include_once(dirname(__FILE__).'/Generators/FirewallFilter.php'); 14 include_once(dirname(__FILE__).'/Generators/FirewallNAT.php'); 15 include_once(dirname(__FILE__).'/Generators/FirewallMangle.php'); 16 include_once(dirname(__FILE__).'/Generators/Queue.php'); 6 17 7 18 class ModuleNetworkConfigRouterOS extends AppModule … … 41 52 ), 42 53 )); 54 55 $this->System->ModuleManager->Modules['NetworkConfig']->RegisterConfigItem('routeros-dns', 'ConfigRouterOSDNS'); 56 $this->System->ModuleManager->Modules['NetworkConfig']->RegisterConfigItem('routeros-dhcp', 'ConfigRouterOSDHCP'); 57 $this->System->ModuleManager->Modules['NetworkConfig']->RegisterConfigItem('routeros-signal', 'ConfigRouterOSSignal'); 58 $this->System->ModuleManager->Modules['NetworkConfig']->RegisterConfigItem('routeros-netwatch', 'ConfigRouterOSNetwatch'); 59 $this->System->ModuleManager->Modules['NetworkConfig']->RegisterConfigItem('routeros-netwatch-import', 'ConfigRouterOSNetwatchImport'); 60 $this->System->ModuleManager->Modules['NetworkConfig']->RegisterConfigItem('routeros-firewall-filter', 'ConfigRouterOSFirewallFilter'); 61 $this->System->ModuleManager->Modules['NetworkConfig']->RegisterConfigItem('routeros-firewall-nat', 'ConfigRouterOSFirewallNAT'); 62 $this->System->ModuleManager->Modules['NetworkConfig']->RegisterConfigItem('routeros-firewall-mangle', 'ConfigRouterOSFirewallMangle'); 63 $this->System->ModuleManager->Modules['NetworkConfig']->RegisterConfigItem('routeros-queue', 'ConfigRouterOSQueue'); 43 64 } 44 65 }
Note:
See TracChangeset
for help on using the changeset viewer.