Last change
on this file since 383 was 383, checked in by chronos, 13 years ago |
- Přidáno: Kostra základního systémového modulu System.
- Přidáno: Obsluha datových typů pro HTML kód a HTTP protokol.
- Upraveno: Do ViewList zkopírování generování tabulky se stránkováním a řazením.
|
File size:
1.1 KB
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | class NetworkConfiguration extends Model
|
---|
4 | {
|
---|
5 | function __construct($Database, $System)
|
---|
6 | {
|
---|
7 | parent::__construct($Database, $System);
|
---|
8 | $this->Name = 'NetworkConfiguration';
|
---|
9 | $this->AddPropertyString('Caption');
|
---|
10 | $this->AddPropertyString('Execute');
|
---|
11 | $this->AddPropertyBoolean('Changed');
|
---|
12 | $this->AddPropertyDateTime('LastTime');
|
---|
13 | $this->AddPropertyInteger('ExecutionTime');
|
---|
14 | $this->AddPropertyBoolean('Enabled');
|
---|
15 | $this->AddPropertyInteger('Period');
|
---|
16 | $this->AddPropertyText24('Log');
|
---|
17 | }
|
---|
18 | }
|
---|
19 |
|
---|
20 | class ModuleNetworkConfig extends Module
|
---|
21 | {
|
---|
22 | function __construct($Database, $System)
|
---|
23 | {
|
---|
24 | parent::__construct($Database, $System);
|
---|
25 | $this->Name = 'NetworkConfig';
|
---|
26 | $this->Version = '1.0';
|
---|
27 | $this->Creator = 'Chronos';
|
---|
28 | $this->License = 'GNU/GPL';
|
---|
29 | $this->Description = 'Network device remote configuration';
|
---|
30 | $this->Dependencies = array('Network');
|
---|
31 | $this->SupportedModels = array('NetworkConfiguration');
|
---|
32 | }
|
---|
33 |
|
---|
34 | function Install()
|
---|
35 | {
|
---|
36 | parent::Install();
|
---|
37 | }
|
---|
38 |
|
---|
39 | function UnInstall()
|
---|
40 | {
|
---|
41 | parent::UnInstall();
|
---|
42 | }
|
---|
43 |
|
---|
44 | function Init()
|
---|
45 | {
|
---|
46 | }
|
---|
47 | }
|
---|
48 |
|
---|
49 |
|
---|
50 | ?>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.