Changeset 899 for trunk/Modules/VPS/VPS.php
- Timestamp:
- Feb 17, 2021, 12:30:23 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/VPS/VPS.php
r887 r899 1 1 <?php 2 2 3 class ModuleVPS extends AppModule3 class ModuleVPS extends Module 4 4 { 5 5 function __construct(System $System) … … 10 10 $this->Version = '1.0'; 11 11 $this->Creator = 'Chronos'; 12 $this->License = 'GNU/GPL ';12 $this->License = 'GNU/GPLv3'; 13 13 $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()); 26 15 } 27 16 }
Note:
See TracChangeset
for help on using the changeset viewer.