base-render-state.php
3 years ago
default-state.php
3 years ago
example-render-state.php
3 years ago
default-state.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Blocks\Conditional_Block\Render_States; |
| 5 | |
| 6 | |
| 7 | class Default_State extends Base_Render_State { |
| 8 | |
| 9 | public function get_id(): string { |
| 10 | return 'DEFAULT.STATE'; |
| 11 | } |
| 12 | |
| 13 | public function get_title(): string { |
| 14 | return __( 'Normal form output process', 'jet-form-builder' ); |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * @return bool |
| 19 | */ |
| 20 | public function is_supported(): bool { |
| 21 | return false; |
| 22 | } |
| 23 | } |