Last change
on this file was 900, checked in by chronos, 4 years ago |
- Modified: Insert sample data action partially implemented.
|
File size:
412 bytes
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | class ModuleConfig extends Module
|
---|
4 | {
|
---|
5 | function __construct(System $System)
|
---|
6 | {
|
---|
7 | parent::__construct($System);
|
---|
8 | $this->Name = 'Config';
|
---|
9 | $this->Version = '1.0';
|
---|
10 | $this->Creator = 'Chronos';
|
---|
11 | $this->License = 'GNU/GPLv3';
|
---|
12 | $this->Description = 'Configuration support for other modules';
|
---|
13 | $this->Dependencies = array(ModuleSystem::GetName());
|
---|
14 | $this->Type = ModuleType::System;
|
---|
15 | }
|
---|
16 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.