2021-08-17 19:06:58 +00:00
|
|
|
<?php
|
2021-09-02 21:54:55 +00:00
|
|
|
/**
|
2023-10-11 20:59:28 +00:00
|
|
|
* @file
|
|
|
|
* @brief The plugin whiteListCom definition
|
|
|
|
* @ingroup whiteListCom
|
2022-11-16 21:22:48 +00:00
|
|
|
*
|
2023-10-11 20:59:28 +00:00
|
|
|
* @defgroup whiteListCom Plugin whiteListCom.
|
2022-11-16 21:22:48 +00:00
|
|
|
*
|
2023-10-11 20:59:28 +00:00
|
|
|
* Whitelists for comments moderation.
|
2022-11-16 21:22:48 +00:00
|
|
|
*
|
2023-10-11 20:59:28 +00:00
|
|
|
* @author Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
2021-09-02 21:54:55 +00:00
|
|
|
*/
|
2023-10-11 20:59:28 +00:00
|
|
|
declare(strict_types=1);
|
2021-08-20 22:39:20 +00:00
|
|
|
|
2021-08-17 19:06:58 +00:00
|
|
|
$this->registerModule(
|
2021-08-20 22:39:20 +00:00
|
|
|
'Whitelist comments',
|
|
|
|
'Whitelists for comments moderation',
|
|
|
|
'Jean-Christian Denis and Contributors',
|
2024-12-06 19:45:59 +00:00
|
|
|
'1.4.2',
|
2021-08-20 22:39:20 +00:00
|
|
|
[
|
2023-10-14 18:37:52 +00:00
|
|
|
'requires' => [['core', '2.28']],
|
2023-10-11 20:59:28 +00:00
|
|
|
'permissions' => 'My',
|
|
|
|
'priority' => 200,
|
|
|
|
'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-20 22:39:20 +00:00
|
|
|
]
|
2022-11-16 21:22:48 +00:00
|
|
|
);
|