lastpostsExtend/_define.php

30 lines
948 B
PHP
Raw Normal View History

2021-08-25 22:06:10 +00:00
<?php
2021-09-16 22:50:25 +00:00
/**
2023-10-19 18:55:57 +00:00
* @file
* @brief The plugin lastpostsExtend definition
* @ingroup lastpostsExtend
2022-11-20 20:23:22 +00:00
*
2023-10-19 18:55:57 +00:00
* @defgroup lastpostsExtend Plugin lastpostsExtend.
2022-11-20 20:23:22 +00:00
*
2023-10-19 18:55:57 +00:00
* Extended list of entries.
2022-11-20 20:23:22 +00:00
*
2023-10-19 18:55:57 +00:00
* @author Jean-Christian Denis (author)
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
2021-09-16 22:50:25 +00:00
*/
2023-10-19 18:55:57 +00:00
declare(strict_types=1);
2021-08-25 22:06:10 +00:00
$this->registerModule(
'Last entries (Extended)',
'Extended list of entries',
'Jean-Christian Denis and contributors',
2023-10-19 18:55:57 +00:00
'2023.10.19',
[
2023-10-19 18:55:57 +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-11-20 20:23:22 +00:00
);