source: trunk/Modules/VPS/VPS.php

Last change on this file was 899, checked in by chronos, 4 years ago
File size: 451 bytes
Line 
1<?php
2
3class ModuleVPS extends Module
4{
5 function __construct(System $System)
6 {
7 parent::__construct($System);
8 $this->Name = 'VPS';
9 $this->Title = 'VPS';
10 $this->Version = '1.0';
11 $this->Creator = 'Chronos';
12 $this->License = 'GNU/GPLv3';
13 $this->Description = 'VPS(Virtual Private Server) hosting management';
14 $this->Dependencies = array(ModuleUser::GetName(), ModuleNetwork::GetName(), ModuleSubject::GetName());
15 }
16}
Note: See TracBrowser for help on using the repository browser.