1 | <?php |
||
2 | // phpcs:disable Squiz.Classes.ValidClassName.NotCamelCaps |
||
3 | // phpcs:disable PSR1.Files.SideEffects |
||
4 | /* |
||
5 | * Copyright (c) 2022 Mark C. Prins <[email protected]> |
||
6 | * |
||
7 | * Permission to use, copy, modify, and distribute this software for any |
||
8 | * purpose with or without fee is hereby granted, provided that the above |
||
9 | * copyright notice and this permission notice appear in all copies. |
||
10 | * |
||
11 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
||
12 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
||
13 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
||
14 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
||
15 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
||
16 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
||
17 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
||
18 | * |
||
19 | */ |
||
20 | |||
21 | use Composer\InstalledVersions; |
||
22 | |||
23 | require_once __DIR__ . '/vendor/autoload.php'; |
||
24 | |||
25 | /** |
||
26 | * DokuWiki Plugin geophp (Action Component). |
||
27 | * |
||
28 | * @author Mark Prins |
||
29 | */ |
||
30 | class action_plugin_geophp extends DokuWiki_Plugin |
||
31 | { |
||
32 | /** |
||
33 | * plugin should use this method to register its handlers with the DokuWiki's event controller |
||
34 | * |
||
35 | * @param $controller DokuWiki's event controller object. Also available as global $EVENT_HANDLER |
||
36 | */ |
||
37 | final public function register(Doku_Event_Handler $controller): void |
||
38 | { |
||
39 | $controller->register_hook('PLUGIN_POPULARITY_DATA_SETUP', 'AFTER', $this, 'popularity'); |
||
40 | } |
||
41 | |||
42 | /** |
||
43 | * Produce popularity data for this plugin. |
||
44 | * |
||
45 | * @param Doku_Event $event The DokuWiki event |
||
46 | */ |
||
47 | final public function popularity(Doku_Event $event): void |
||
48 | { |
||
49 | $versionInfo = getVersionData(); |
||
1 ignored issue
–
show
Bug
introduced
by
![]() |
|||
50 | $geoPHP = InstalledVersions::getPrettyVersion('funiq/geophp'); |
||
51 | $plugin_info = $this->getInfo(); |
||
52 | $event->data['geophp']['version'] = $plugin_info['date']; |
||
53 | $event->data['geophp']['geophp'] = $geoPHP; |
||
54 | $event->data['geophp']['dwversion'] = $versionInfo['date']; |
||
55 | $event->data['geophp']['combinedversion'] = $versionInfo['date'] . '_' . $plugin_info['date'] . '_' . $geoPHP; |
||
56 | } |
||
57 | } |