base-operator.php
3 years ago
operator-between.php
3 years ago
operator-contain.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-render-state.php
3 years ago
operator-equal.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Blocks\Conditional_Block\Operators; |
| 5 | |
| 6 | |
| 7 | class Operator_Equal extends Base_Operator { |
| 8 | |
| 9 | const ID = 'equal'; |
| 10 | |
| 11 | public function get_id(): string { |
| 12 | return self::ID; |
| 13 | } |
| 14 | |
| 15 | public function get_title(): string { |
| 16 | return __( 'Equal', 'jet-form-builder' ); |
| 17 | } |
| 18 | |
| 19 | public function is_supported(): bool { |
| 20 | return false; |
| 21 | } |
| 22 | } |