mirror of
https://github.com/silverstripe/silverstripe-spamprotection.git
synced 2024-10-22 14:05:59 +02:00
14 lines
299 B
PHP
14 lines
299 B
PHP
<?php
|
|
|
|
class EditableSpamProtectionFieldTest_Protector implements SpamProtector, TestOnly
|
|
{
|
|
public function getFormField($name = null, $title = null, $value = null)
|
|
{
|
|
return new TextField($name, 'Foo', $value);
|
|
}
|
|
|
|
public function setFieldMapping($fieldMapping)
|
|
{
|
|
}
|
|
}
|