source: trunk/Modules/Map/ModuleMap.php

Last change on this file was 9, checked in by chronos, 18 months ago
  • Fixed: Modules initialization.
File size: 661 bytes
Line 
1<?php
2
3include_once(dirname(__FILE__).'/Map.php');
4include_once(dirname(__FILE__).'/MapGoogle.php');
5include_once(dirname(__FILE__).'/MapOSM.php');
6include_once(dirname(__FILE__).'/MapSeznam.php');
7
8class ModuleMap extends Module
9{
10 function __construct($System)
11 {
12 parent::__construct($System);
13 $this->Name = 'Map';
14 $this->Version = '1.0';
15 $this->Creator = 'Chronos';
16 $this->License = 'GNU/GPL';
17 $this->Description = 'Map';
18 $this->Dependencies = array();
19 }
20
21 function DoStart(): void
22 {
23 }
24
25 function DoInstall(): void
26 {
27 }
28
29 function DoUninstall(): void
30 {
31 }
32
33 function DoUpgrade(): string
34 {
35 return '';
36 }
37}
Note: See TracBrowser for help on using the repository browser.