shortArchives/_define.php

31 lines
1.0 KiB
PHP
Raw Normal View History

2015-04-25 18:38:55 +00:00
<?php
2022-12-16 22:14:52 +00:00
/**
2023-10-20 19:21:02 +00:00
* @file
* @brief The plugin shortArchives definition
* @ingroup shortArchives
2022-12-16 22:14:52 +00:00
*
2023-10-20 19:21:02 +00:00
* @defgroup shortArchives Plugin shortArchives.
2022-12-16 22:14:52 +00:00
*
2023-10-20 19:21:02 +00:00
* Display blog archives in an accordion menu, sorted by year.
2022-12-16 22:14:52 +00:00
*
2023-10-20 19:21:02 +00:00
* @author annso (author)
* @author Jean-Christian Denis (latest)
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
2022-12-16 22:14:52 +00:00
*/
2023-10-20 19:21:02 +00:00
declare(strict_types=1);
2015-04-25 18:38:55 +00:00
$this->registerModule(
2022-12-16 22:14:52 +00:00
'shortArchives',
'Display blog archives in an accordion menu, sorted by year',
'annso, Pierre Van Glabeke and Contributors',
2023-10-20 19:21:02 +00:00
'2.2',
2022-12-16 22:14:52 +00:00
[
2023-10-20 19:21:02 +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 22:14:52 +00:00
]
);