dcFilterDuplicate/_define.php

34 lines
1.0 KiB
PHP
Raw Normal View History

2015-04-22 16:03:40 +00:00
<?php
2021-09-02 14:30:40 +00:00
/**
* @brief dcFilterDuplicate, a plugin for Dotclear 2
2022-11-16 21:48:46 +00:00
*
2021-09-02 14:30:40 +00:00
* @package Dotclear
* @subpackage Plugin
2022-11-16 21:48:46 +00:00
*
2021-09-02 14:30:40 +00:00
* @author Jean-Christian Denis, Pierre Van Glabeke
2022-11-16 21:48:46 +00:00
*
2021-09-02 14:30:40 +00:00
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2023-04-24 13:45:26 +00:00
if (!defined('DC_RC_PATH') || is_null(dcCore::app()->auth)) {
2021-08-27 15:16:25 +00:00
return null;
2015-04-22 16:03:40 +00:00
}
2021-09-02 14:30:40 +00:00
2015-04-22 16:03:40 +00:00
$this->registerModule(
2022-11-16 21:48:46 +00:00
'Duplicate filter',
'Antispam for duplicate comments on multiblog',
'Jean-Christian Denis, Pierre Van Glabeke',
2023-05-13 08:20:07 +00:00
'1.2',
2021-08-27 15:16:25 +00:00
[
2023-04-20 20:31:05 +00:00
'requires' => [['core', '2.26']],
2022-11-30 22:56:33 +00:00
'permissions' => dcCore::app()->auth->makePermissions([
2023-04-24 13:45:26 +00:00
dcCore::app()->auth::PERMISSION_ADMIN,
2022-11-30 22:56:33 +00:00
]),
2023-03-11 22:11:29 +00:00
'priority' => 200,
'type' => 'plugin',
'support' => 'http://forum.dotclear.org/viewtopic.php?pid=332947#p332947',
'details' => 'http://plugins.dotaddict.org/dc2/details/' . basename(__DIR__),
'repository' => 'https://raw.githubusercontent.com/JcDenis/' . basename(__DIR__) . '/master/dcstore.xml',
2021-08-27 15:16:25 +00:00
]
2022-11-16 21:48:46 +00:00
);