source: trunk/Modules/NetworkConfigRouterOS/NetworkConfigRouterOS.php@ 522

Last change on this file since 522 was 522, checked in by chronos, 12 years ago
  • Upraveno: Skritpy generátorů nastavení routerů přetvořeny na aplikační moduly NetworkConfig.
File size: 549 bytes
Line 
1<?php
2
3class ModuleNetworkConfigRouterOS extends AppModule
4{
5 function __construct($System)
6 {
7 parent::__construct($System);
8 $this->Name = 'NetworkConfigRouterOS';
9 $this->Version = '1.0';
10 $this->Creator = 'Chronos';
11 $this->License = 'GNU/GPL';
12 $this->Description = 'Mikrotik RouterOS configuration';
13 $this->Dependencies = array('NetworkConfig');
14 }
15
16 function Install()
17 {
18 parent::Install();
19 }
20
21 function UnInstall()
22 {
23 parent::UnInstall();
24 }
25
26 function Start()
27 {
28 parent::Start();
29 }
30}
31
32?>
Note: See TracBrowser for help on using the repository browser.