bloganniv/_define.php

31 lines
992 B
PHP
Raw Permalink Normal View History

2015-04-22 14:37:03 +00:00
<?php
2022-12-16 21:27:11 +00:00
/**
2023-10-15 17:39:33 +00:00
* @file
* @brief The plugin bloganniv definition
* @ingroup bloganniv
2022-12-16 21:27:11 +00:00
*
2023-10-15 17:39:33 +00:00
* @defgroup bloganniv Plugin bloganniv.
2022-12-16 21:27:11 +00:00
*
2023-10-15 17:39:33 +00:00
* Show number of days before and after a given date.
2022-12-16 21:27:11 +00:00
*
2023-10-15 17:39:33 +00:00
* @author Fran6t (author)
* @author Jean-Christian Denis (latest)
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
2022-12-16 21:27:11 +00:00
*/
2023-10-15 17:39:33 +00:00
declare(strict_types=1);
2022-12-16 21:27:11 +00:00
2015-04-22 14:37:03 +00:00
$this->registerModule(
2022-12-16 21:27:11 +00:00
'Blog Anniv',
2023-10-15 17:39:33 +00:00
'Show number of days before and after a given date',
2022-12-16 21:27:11 +00:00
'Fran6t, Pierre Van Glabeke and Contributors',
2023-10-15 17:39:33 +00:00
'2.4',
2022-12-16 21:27:11 +00:00
[
2023-10-15 17:39:33 +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-16 21:27:11 +00:00
]
);