2015-04-23 16:45:00 +00:00
|
|
|
<?php
|
2022-12-15 21:26:10 +00:00
|
|
|
/**
|
2023-10-19 19:18:26 +00:00
|
|
|
* @file
|
|
|
|
* @brief The plugin lunarPhase definition
|
|
|
|
* @ingroup lunarPhase
|
2022-12-15 21:26:10 +00:00
|
|
|
*
|
2023-10-19 19:18:26 +00:00
|
|
|
* @defgroup lunarPhase Plugin lunarPhase.
|
2022-12-15 21:26:10 +00:00
|
|
|
*
|
2023-10-19 19:18:26 +00:00
|
|
|
* Display the moon phases on a widget.
|
2022-12-15 21:26:10 +00:00
|
|
|
*
|
2023-10-19 19:18:26 +00:00
|
|
|
* @author Tomtom (author)
|
|
|
|
* @author Jean-Christian Denis (latest)
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
2022-12-15 21:26:10 +00:00
|
|
|
*/
|
2023-10-19 19:18:26 +00:00
|
|
|
declare(strict_types=1);
|
2015-04-23 16:45:00 +00:00
|
|
|
|
|
|
|
$this->registerModule(
|
2023-04-25 21:19:30 +00:00
|
|
|
'Moon phases',
|
2022-12-15 21:26:10 +00:00
|
|
|
'Display the moon phases on a widget',
|
|
|
|
'Tomtom, Pierre Van Glabeke and Contributors',
|
2023-10-19 19:18:26 +00:00
|
|
|
'1.9',
|
2022-12-15 21:26:10 +00:00
|
|
|
[
|
2023-10-19 19:18:26 +00:00
|
|
|
'requires' => [['core', '2.28']],
|
|
|
|
'permissions' => 'My',
|
|
|
|
'type' => 'plugin',
|
|
|
|
'support' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/issues',
|
|
|
|
'details' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/src/branch/master/README.md',
|
|
|
|
'repository' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/raw/branch/master/dcstore.xml',
|
2022-12-15 21:26:10 +00:00
|
|
|
]
|
|
|
|
);
|