Changeset 899 for trunk/Modules/Config/Config.php
- Timestamp:
- Feb 17, 2021, 12:30:23 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Config/Config.php
r897 r899 1 1 <?php 2 2 3 class ModuleConfig extends AppModule3 class ModuleConfig extends Module 4 4 { 5 5 function __construct(System $System) 6 6 { 7 7 parent::__construct($System); 8 $this->Name = ' Config';8 $this->Name = 'Desc'; 9 9 $this->Version = '1.0'; 10 10 $this->Creator = 'Chronos'; 11 11 $this->License = 'GNU/GPLv3'; 12 12 $this->Description = 'Configuration support for other modules'; 13 $this->Dependencies = array('System'); 14 $this->Revision = 1; 13 $this->Dependencies = array(ModuleSystem::GetName()); 15 14 $this->Type = ModuleType::System; 16 15 } 17 18 function GetModels(): array19 {20 return array();21 }22 23 function DoStart(): void24 {25 }26 16 }
Note:
See TracChangeset
for help on using the changeset viewer.