date-field-parser.php
4 years ago
datetime-field-parser.php
4 years ago
datetime-trait.php
4 years ago
media-field-parser.php
4 years ago
repeater-field-parser.php
4 years ago
text-field-parser.php
4 years ago
wysiwyg-field-parser.php
4 years ago
text-field-parser.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Request\Fields; |
| 5 | |
| 6 | use Jet_Form_Builder\Request\Field_Data_Parser; |
| 7 | |
| 8 | class Text_Field_Parser extends Field_Data_Parser { |
| 9 | |
| 10 | public function type() { |
| 11 | return 'text-field'; |
| 12 | } |
| 13 | |
| 14 | public function _is_custom_check() { |
| 15 | $type = $this->settings['field_type'] ?? 'text'; |
| 16 | |
| 17 | return ( 'email' === $type && ! is_email( $this->value ) && $this->_is_required() ); |
| 18 | } |
| 19 | |
| 20 | } |