mirror of
https://github.com/silverstripe/silverstripe-mathspamprotection
synced 2024-10-22 08:05:52 +02:00
27 lines
633 B
PHP
27 lines
633 B
PHP
<?php
|
|
|
|
/**
|
|
* @package mathspamprotection
|
|
*/
|
|
|
|
class MathSpamProtector implements SpamProtector {
|
|
|
|
/**
|
|
* Returns the {@link MathSpamProtectorField} associated with this protector
|
|
*
|
|
* @return MathSpamProtectorField
|
|
*/
|
|
public function getFormField($name = null, $title = null, $value = null, $form = null, $rightTitle = null) {
|
|
return new MathSpamProtectorField($name, $title, $value, $form, $rightTitle);
|
|
}
|
|
|
|
/**
|
|
* Function required to handle dynamic feedback of the system.
|
|
* if unneeded just return true
|
|
*
|
|
* @return true
|
|
*/
|
|
public function sendFeedback($object = null, $feedback = "") {
|
|
return true;
|
|
}
|
|
} |