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
actions-meta.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Post_Meta; |
| 5 | |
| 6 | |
| 7 | |
| 8 | class Actions_Meta extends Base_Meta_Type { |
| 9 | |
| 10 | public function get_id(): string { |
| 11 | return '_jf_actions'; |
| 12 | } |
| 13 | |
| 14 | public function get_type(): string { |
| 15 | return 'string'; |
| 16 | } |
| 17 | |
| 18 | public function get_default(): string { |
| 19 | return '[]'; |
| 20 | } |
| 21 | } |