topWriter/_define.php

30 lines
962 B
PHP
Raw Normal View History

2015-04-25 18:37:25 +00:00
<?php
2021-09-02 21:22:11 +00:00
/**
2023-10-20 21:19:21 +00:00
* @file
* @brief The plugin topWriter definition
* @ingroup topWriter
2021-11-06 20:15:51 +00:00
*
2023-10-20 21:19:21 +00:00
* @defgroup topWriter Plugin topWriter.
2021-11-06 20:15:51 +00:00
*
2023-10-20 21:19:21 +00:00
* Ranking of the most prolific writers and/or commentators.
2021-11-06 20:15:51 +00:00
*
2023-10-20 21:19:21 +00:00
* @author Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
2021-09-02 21:22:11 +00:00
*/
2023-10-20 21:19:21 +00:00
declare(strict_types=1);
2015-04-25 18:37:25 +00:00
$this->registerModule(
2021-09-17 21:11:07 +00:00
'Top writer',
2021-08-27 20:09:31 +00:00
'Ranking of the most prolific writers and/or commentators',
'Jean-Christian Denis, Pierre Van Glabeke',
2023-10-20 21:19:21 +00:00
'1.4',
2021-08-27 20:09:31 +00:00
[
2023-10-20 21:19:21 +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',
2021-08-27 20:09:31 +00:00
]
2021-11-06 20:15:51 +00:00
);