2021-08-17 19:06:58 +00:00
|
|
|
<?php
|
2021-09-02 21:54:55 +00:00
|
|
|
/**
|
|
|
|
* @brief whiteListCom, a plugin for Dotclear 2
|
|
|
|
*
|
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
|
|
|
*
|
|
|
|
* @author Jean-Christian Denis and Contributors
|
|
|
|
*
|
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2021-08-17 19:06:58 +00:00
|
|
|
|
|
|
|
if (!defined('DC_RC_PATH')) {
|
2021-08-20 22:39:20 +00:00
|
|
|
return null;
|
2021-08-17 19:06:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$d = dirname(__FILE__).'/inc/lib.whitelistcom.php';
|
|
|
|
|
2021-08-20 22:39:20 +00:00
|
|
|
$__autoload['whiteListCom'] = $d;
|
|
|
|
$__autoload['whiteListComBehaviors'] = $d;
|
|
|
|
$__autoload['whiteListComReservedFilter'] = $d;
|
|
|
|
$__autoload['whiteListComModeratedFilter'] = $d;
|
2021-08-17 19:06:58 +00:00
|
|
|
|
|
|
|
$core->spamfilters[] = 'whiteListComModeratedFilter';
|
|
|
|
|
|
|
|
$core->addBehavior(
|
2021-08-20 22:39:20 +00:00
|
|
|
'publicAfterCommentCreate',
|
|
|
|
['whiteListComBehaviors', 'switchStatus']
|
2021-08-17 19:06:58 +00:00
|
|
|
);
|
|
|
|
|
2021-08-20 22:39:20 +00:00
|
|
|
$core->spamfilters[] = 'whiteListComReservedFilter';
|