actions-meta.php
3 years ago
args-meta.php
3 years ago
base-meta-type.php
3 years ago
gateways-meta.php
3 years ago
messages-meta.php
3 years ago
preset-meta.php
3 years ago
recaptcha-meta.php
3 years ago
validation-meta.php
3 years ago
validation-meta.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Post_Meta; |
| 5 | |
| 6 | |
| 7 | class Validation_Meta extends Base_Meta_Type { |
| 8 | |
| 9 | public function get_id(): string { |
| 10 | return '_jf_validation'; |
| 11 | } |
| 12 | |
| 13 | public function get_type(): string { |
| 14 | return 'string'; |
| 15 | } |
| 16 | |
| 17 | public function get_default(): string { |
| 18 | return '{}'; |
| 19 | } |
| 20 | } |