|
Last change
on this file was 9, checked in by chronos, 2 years ago |
- Fixed: Modules initialization.
|
|
File size:
661 bytes
|
| Line | |
|---|
| 1 | <?php
|
|---|
| 2 |
|
|---|
| 3 | include_once(dirname(__FILE__).'/Map.php');
|
|---|
| 4 | include_once(dirname(__FILE__).'/MapGoogle.php');
|
|---|
| 5 | include_once(dirname(__FILE__).'/MapOSM.php');
|
|---|
| 6 | include_once(dirname(__FILE__).'/MapSeznam.php');
|
|---|
| 7 |
|
|---|
| 8 | class 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.