Ignore:
Timestamp:
Feb 17, 2021, 12:30:23 PM (3 years ago)
Author:
chronos
Message:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Config/Config.php

    r897 r899  
    11<?php
    22
    3 class ModuleConfig extends AppModule
     3class ModuleConfig extends Module
    44{
    55  function __construct(System $System)
    66  {
    77    parent::__construct($System);
    8     $this->Name = 'Config';
     8    $this->Name = 'Desc';
    99    $this->Version = '1.0';
    1010    $this->Creator = 'Chronos';
    1111    $this->License = 'GNU/GPLv3';
    1212    $this->Description = 'Configuration support for other modules';
    13     $this->Dependencies = array('System');
    14     $this->Revision = 1;
     13    $this->Dependencies = array(ModuleSystem::GetName());
    1514    $this->Type = ModuleType::System;
    1615  }
    17 
    18   function GetModels(): array
    19   {
    20     return array();
    21   }
    22 
    23   function DoStart(): void
    24   {
    25   }
    2616}
Note: See TracChangeset for help on using the changeset viewer.