base-operator.php
3 years ago
operator-between.php
3 years ago
operator-contain.php
3 years ago
operator-empty.php
3 years ago
operator-equal.php
3 years ago
operator-greater.php
3 years ago
operator-in-the-list.php
3 years ago
operator-less.php
3 years ago
operator-not-between.php
3 years ago
operator-not-contain.php
3 years ago
operator-not-empty.php
3 years ago
operator-not-equal.php
3 years ago
operator-not-in-the-list.php
3 years ago
operator-render-state.php
3 years ago
operator-render-state.php
33 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Blocks\Conditional_Block\Operators; |
| 5 | |
| 6 | |
| 7 | class Operator_Render_State extends Base_Operator { |
| 8 | |
| 9 | const SELF = 'render_state'; |
| 10 | |
| 11 | /** |
| 12 | * @return string |
| 13 | */ |
| 14 | public function get_id(): string { |
| 15 | return self::SELF; |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * @return string |
| 20 | */ |
| 21 | public function get_title(): string { |
| 22 | return __( 'Is render state', 'jet-form-builder' ); |
| 23 | } |
| 24 | |
| 25 | public function is_supported(): bool { |
| 26 | return false; |
| 27 | } |
| 28 | |
| 29 | public function is_field_relative(): bool { |
| 30 | return false; |
| 31 | } |
| 32 | |
| 33 | } |