exceptions
2 years ago
form-request-router.php
2 years ago
request-handler.php
2 years ago
request-router.php
2 years ago
request-tools.php
2 years ago
form-request-router.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Request; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | class Form_Request_Router extends Request_Router { |
| 12 | |
| 13 | public function get_hook_name(): string { |
| 14 | return jet_fb_handler()->hook_key; |
| 15 | } |
| 16 | |
| 17 | public function get_hook_value(): string { |
| 18 | return jet_fb_handler()->hook_val; |
| 19 | } |
| 20 | } |
| 21 |