advanced-rule.php
2 years ago
match-not-regexp-rule.php
2 years ago
match-regexp-rule.php
2 years ago
must-contain-characters-rule.php
2 years ago
must-equal-rule.php
2 years ago
must-not-contain-characters-rule.php
2 years ago
server-side-rule.php
2 years ago
server-side-rule.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Blocks\Advanced_Rules; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | class Server_Side_Rule extends Match_Regexp_Rule { |
| 12 | |
| 13 | public function get_id(): string { |
| 14 | return 'ssr'; |
| 15 | } |
| 16 | |
| 17 | public function get_label(): string { |
| 18 | return __( 'Server-Side callback', 'jet-form-builder' ); |
| 19 | } |
| 20 | |
| 21 | } |
| 22 |