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