base-field-error.php
4 years ago
checkboxes-field-error.php
4 years ago
error-handler.php
4 years ago
media-field-error.php
4 years ago
number-field-error.php
4 years ago
repeater-field-error.php
4 years ago
text-field-error.php
4 years ago
textarea-field-error.php
4 years ago
wysiwyg-field-error.php
4 years ago
text-field-error.php
25 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Blocks\Modules\Fields_Errors; |
| 5 | |
| 6 | |
| 7 | class Text_Field_Error extends Base_Field_Error { |
| 8 | |
| 9 | public function get_name() { |
| 10 | return 'text-field'; |
| 11 | } |
| 12 | |
| 13 | public function get_title() { |
| 14 | return 'Text field'; |
| 15 | } |
| 16 | |
| 17 | public function error() { |
| 18 | switch ( $this->params['field_type'] ) { |
| 19 | case 'email': |
| 20 | return 'Invalid email.'; |
| 21 | default: |
| 22 | return parent::error(); |
| 23 | } |
| 24 | } |
| 25 | } |