whiteListCom/_define.php

35 lines
997 B
PHP
Raw Normal View History

2021-08-17 19:06:58 +00:00
<?php
2021-09-02 21:54:55 +00:00
/**
* @brief whiteListCom, a plugin for Dotclear 2
2022-11-16 21:22:48 +00:00
*
2021-09-02 21:54:55 +00:00
* @package Dotclear
* @subpackage Plugin
2022-11-16 21:22:48 +00:00
*
2021-09-02 21:54:55 +00:00
* @author Jean-Christian Denis and Contributors
2022-11-16 21:22:48 +00:00
*
2021-09-02 21:54:55 +00:00
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
if (!defined('DC_RC_PATH')) {
return null;
}
2021-08-17 19:06:58 +00:00
$this->registerModule(
'Whitelist comments',
'Whitelists for comments moderation',
'Jean-Christian Denis and Contributors',
2022-11-16 21:22:48 +00:00
'0.9',
[
2022-11-16 21:22:48 +00:00
'requires' => [['core', '2.24']],
2022-12-03 16:58:09 +00:00
'permissions' => dcCore::app()->auth->makePermissions([
dcAuth::PERMISSION_USAGE,
dcAuth::PERMISSION_CONTENT_ADMIN,
]),
2022-11-16 21:22:48 +00:00
'priority' => 200,
'type' => 'plugin',
'support' => 'https://github.com/JcDenis/whiteListCom',
'details' => 'https://plugins.dotaddict.org/dc2/details/whiteListCom',
'repository' => 'https://raw.githubusercontent.com/JcDenis/whiteListCom/master/dcstore.xml',
]
2022-11-16 21:22:48 +00:00
);