dcFilterDuplicate/_define.php

32 lines
898 B
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
*
* @package Dotclear
* @subpackage Plugin
*
* @author Jean-Christian Denis, Pierre Van Glabeke
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2015-04-22 16:03:40 +00:00
if (!defined('DC_RC_PATH')) {
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(
"Duplicate filter",
2021-08-27 15:16:25 +00:00
"Antispam for duplicate comments on multiblog",
"Jean-Christian Denis, Pierre Van Glabeke",
2021-09-02 14:29:17 +00:00
'0.8',
2021-08-27 15:16:25 +00:00
[
'requires' => [['core', '2.19']],
2021-08-27 15:16:25 +00:00
'permissions' => 'admin',
'priority' => 200,
'type' => 'plugin',
'support' => 'http://forum.dotclear.org/viewtopic.php?pid=332947#p332947',
'details' => 'http://plugins.dotaddict.org/dc2/details/dcFilterDuplicate',
'repository' => 'https://raw.githubusercontent.com/JcDenis/dcFilterDuplicate/master/dcstore.xml'
]
2015-04-22 16:03:40 +00:00
);