silverstripe-spamprotection/code/extensions/CommentSpamProtection.php

33 lines
731 B
PHP
Raw Normal View History

<?php
2016-10-10 07:44:28 +02:00
namespace SilverStripe\Spamprotection;
use SilverStripe\Core\Extension;
/**
* Apply the spam protection to the comments module if it is installed.
*
* @package spamprotection
*/
2015-11-21 07:15:15 +01:00
class CommentSpamProtection extends Extension
{
public function alterCommentForm(&$form)
{
$form->enableSpamProtection(array(
'name' => 'IsSpam',
'mapping' => array(
'Name' => 'authorName',
'Email' => 'authorEmail',
'URL' => 'authorUrl',
'Comment' => 'body',
'ReturnURL' => 'contextUrl'
),
'checks' => array(
'spam',
'profanity'
)
));
}
}