bad-request
2 years ago
default-process
2 years ago
default-required
2 years ago
gateway-failed
2 years ago
gateway-success
2 years ago
never
2 years ago
on-dynamic-state
2 years ago
base-action-event.php
2 years ago
base-event.php
2 years ago
base-executor.php
2 years ago
base-gateway-event.php
2 years ago
gateway-base-executor.php
2 years ago
gateway-base-executor.php
31 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Actions\Events; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | abstract class Gateway_Base_Executor extends Base_Executor { |
| 12 | |
| 13 | abstract public function get_gateway_type(): string; |
| 14 | |
| 15 | public function before_execute() { |
| 16 | parent::before_execute(); |
| 17 | |
| 18 | do_action( |
| 19 | "jet-form-builder/gateways/on-payment-{$this->get_gateway_type()}", |
| 20 | jet_fb_gateway_current() |
| 21 | ); |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * @return bool |
| 26 | */ |
| 27 | public function is_supported(): bool { |
| 28 | return true; |
| 29 | } |
| 30 | } |
| 31 |