mirror of
https://github.com/silverstripe/silverstripe-spamprotection.git
synced 2024-10-22 14:05:59 +02:00
23 lines
513 B
PHP
23 lines
513 B
PHP
<?php
|
|
|
|
/**
|
|
* Apply the spam protection to the comments module if it is installed
|
|
*
|
|
* @package spamprotection
|
|
*/
|
|
|
|
class CommentSpamProtection extends Extension {
|
|
|
|
/**
|
|
* Disable the AJAX commenting and update the form
|
|
* with the {@link SpamProtectorField} which is enabled
|
|
*/
|
|
function alterCommentForm(&$form) {
|
|
SpamProtectorManager::update_form($form, null, array(
|
|
'Name' => 'author_name',
|
|
'CommenterURL' => 'author_url',
|
|
'Comment' => 'post_body',
|
|
'Email' => 'author_email'
|
|
));
|
|
}
|
|
} |