mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
54 lines
1.2 KiB
PHP
54 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\UserForms\Model\EditableFormField;
|
|
|
|
use SilverStripe\Forms\EmailField;
|
|
use SilverStripe\Forms\FormField;
|
|
use SilverStripe\UserForms\Model\EditableFormField;
|
|
|
|
/**
|
|
* EditableEmailField
|
|
*
|
|
* Allow users to define a validating editable email field for a UserDefinedForm
|
|
*
|
|
* @package userforms
|
|
*/
|
|
class EditableEmailField extends EditableFormField
|
|
{
|
|
private static $singular_name = 'Email Field';
|
|
|
|
private static $plural_name = 'Email Fields';
|
|
|
|
private static $has_placeholder = true;
|
|
|
|
private static $table_name = 'EditableEmailField';
|
|
|
|
public function getSetsOwnError()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function getFormField()
|
|
{
|
|
$field = EmailField::create($this->Name, $this->Title ?: false, $this->Default)
|
|
->setFieldHolderTemplate(EditableFormField::class . '_holder')
|
|
->setTemplate(EditableFormField::class);
|
|
|
|
$this->doUpdateFormField($field);
|
|
|
|
return $field;
|
|
}
|
|
|
|
/**
|
|
* Updates a formfield with the additional metadata specified by this field
|
|
*
|
|
* @param FormField $field
|
|
*/
|
|
protected function updateFormField($field)
|
|
{
|
|
parent::updateFormField($field);
|
|
|
|
$field->setAttribute('data-rule-email', true);
|
|
}
|
|
}
|