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