base-captcha-from-options.php
2 years ago
base-captcha.php
2 years ago
captcha-frontend-style-it.php
2 years ago
captcha-separate-editor-script.php
2 years ago
captcha-separate-frontend-script.php
2 years ago
captcha-settings-from-options.php
2 years ago
captcha-settings-from-options.php
25 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Captcha\Abstract_Captcha; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | interface Captcha_Settings_From_Options { |
| 12 | |
| 13 | /** |
| 14 | * Runs when settings are saved on the |
| 15 | * JetFormBuilder -> Settings page |
| 16 | */ |
| 17 | public function on_save_options( array $post_request ): array; |
| 18 | |
| 19 | /** |
| 20 | * Runs when the JetFormBuilder -> Settings page is loaded |
| 21 | */ |
| 22 | public function on_load_options(): array; |
| 23 | |
| 24 | } |
| 25 |