advanced-rule.php
3 years ago
match-not-regexp-rule.php
3 years ago
match-regexp-rule.php
3 years ago
must-contain-characters-rule.php
3 years ago
must-equal-rule.php
3 years ago
must-not-contain-characters-rule.php
3 years ago
server-side-rule.php
3 years ago
match-not-regexp-rule.php
16 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Blocks\Advanced_Rules; |
| 5 | |
| 6 | |
| 7 | class Match_Not_Regexp_Rule extends Match_Regexp_Rule { |
| 8 | |
| 9 | public function get_id(): string { |
| 10 | return 'regexp_not'; |
| 11 | } |
| 12 | |
| 13 | public function get_label(): string { |
| 14 | return __( 'Does not match regular expression', 'jet-form-builder' ); |
| 15 | } |
| 16 | } |