2022-12-31 10:21:18 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2023-10-15 20:15:37 +00:00
|
|
|
* @file
|
|
|
|
* @brief The plugin countdown definition
|
|
|
|
* @ingroup countdown
|
2022-12-31 10:21:18 +00:00
|
|
|
*
|
2023-10-15 20:15:37 +00:00
|
|
|
* @defgroup countdown Plugin countdown.
|
2022-12-31 10:21:18 +00:00
|
|
|
*
|
2023-10-15 20:15:37 +00:00
|
|
|
* Countdown and stopwatch.
|
2022-12-31 10:21:18 +00:00
|
|
|
*
|
2023-10-15 20:15:37 +00:00
|
|
|
* @author Moe (author)
|
|
|
|
* @author Jean-Christian Denis (latest)
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
2022-12-31 10:21:18 +00:00
|
|
|
*/
|
2023-10-15 20:15:37 +00:00
|
|
|
declare(strict_types=1);
|
2022-12-28 23:45:36 +00:00
|
|
|
|
|
|
|
$this->registerModule(
|
2022-12-29 18:51:47 +00:00
|
|
|
'CountDown',
|
|
|
|
'Countdown and stopwatch',
|
2022-12-31 10:21:18 +00:00
|
|
|
'Moe (http://gniark.net/) and contributors',
|
2023-10-23 22:15:01 +00:00
|
|
|
'2.4.1',
|
2022-12-29 18:51:47 +00:00
|
|
|
[
|
2023-10-15 20:15:37 +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-29 18:51:47 +00:00
|
|
|
]
|
|
|
|
);
|