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

Legend:

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

    r887 r899  
    11<?php
    22
    3 class ModuleVPS extends AppModule
     3class ModuleVPS extends Module
    44{
    55  function __construct(System $System)
     
    1010    $this->Version = '1.0';
    1111    $this->Creator = 'Chronos';
    12     $this->License = 'GNU/GPL';
     12    $this->License = 'GNU/GPLv3';
    1313    $this->Description = 'VPS(Virtual Private Server) hosting management';
    14     $this->Dependencies = array('User', 'Network', 'Subject');
    15     $this->Modules = array();
    16   }
    17 
    18   function DoStart(): void
    19   {
    20 
    21   }
    22 
    23   function DoInstall(): void
    24   {
    25 
     14    $this->Dependencies = array(ModuleUser::GetName(), ModuleNetwork::GetName(), ModuleSubject::GetName());
    2615  }
    2716}
Note: See TracChangeset for help on using the changeset viewer.