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
1 year ago
base-executor.php
2 years ago
base-gateway-event.php
2 years ago
gateway-base-executor.php
2 years ago
base-event.php
97 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Actions\Events; |
| 5 | |
| 6 | use Jet_Form_Builder\Actions\Types\Base; |
| 7 | use Jet_Form_Builder\Classes\Arrayable\Arrayable; |
| 8 | use Jet_Form_Builder\Classes\Arrayable\Collection_Item_Interface; |
| 9 | use JFB_Components\Repository\Repository_Item_Instance_Trait; |
| 10 | use Jet_Form_Builder\Exceptions\Action_Exception; |
| 11 | |
| 12 | // If this file is called directly, abort. |
| 13 | if ( ! defined( 'WPINC' ) ) { |
| 14 | die; |
| 15 | } |
| 16 | |
| 17 | abstract class Base_Event implements |
| 18 | Repository_Item_Instance_Trait, |
| 19 | Collection_Item_Interface, |
| 20 | Arrayable { |
| 21 | |
| 22 | /** |
| 23 | * @return Base_Executor[] |
| 24 | */ |
| 25 | abstract public function executors(): array; |
| 26 | |
| 27 | public function ignored_executors(): array { |
| 28 | return array(); |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * @throws Action_Exception |
| 33 | */ |
| 34 | public function execute() { |
| 35 | $this->get_executor()->execute(); |
| 36 | } |
| 37 | |
| 38 | |
| 39 | /** |
| 40 | * @return Base_Executor |
| 41 | */ |
| 42 | final public function get_executor(): Base_Executor { |
| 43 | foreach ( $this->executors() as $executor ) { |
| 44 | if ( $executor->is_supported() ) { |
| 45 | return $executor->set_event( $this ); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | // phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped |
| 50 | wp_die( |
| 51 | /* translators: %s - Event class name */ |
| 52 | sprintf( __( 'Not founded supported executor for %s', 'jet-form-builder' ), static::class ) |
| 53 | ); |
| 54 | // phpcs:enable WordPress.Security.EscapeOutput.OutputNotEscaped |
| 55 | } |
| 56 | |
| 57 | public function is_valid_action( Base $action ): bool { |
| 58 | $unsupported = $action->unsupported_events(); |
| 59 | |
| 60 | $unsupported = apply_filters( 'jet-form-builder/events/base-unsupported-events', $unsupported, $action->get_id(), $this->get_id() ); |
| 61 | |
| 62 | if ( ! empty( $unsupported ) && in_array( static::class, $unsupported, true ) ) { |
| 63 | return false; |
| 64 | } |
| 65 | $supported = $action->supported_events(); |
| 66 | |
| 67 | if ( ! empty( $supported ) && ! in_array( static::class, $supported, true ) ) { |
| 68 | return false; |
| 69 | } |
| 70 | |
| 71 | return $action->get_events()->in_array( $this ); |
| 72 | } |
| 73 | |
| 74 | public function get_label(): string { |
| 75 | return $this->get_id(); |
| 76 | } |
| 77 | |
| 78 | public function get_help(): string { |
| 79 | return ''; |
| 80 | } |
| 81 | |
| 82 | public function rep_item_id() { |
| 83 | return $this->get_id(); |
| 84 | } |
| 85 | |
| 86 | |
| 87 | public function to_array(): array { |
| 88 | return array( |
| 89 | 'value' => $this->get_id(), |
| 90 | 'label' => $this->get_label(), |
| 91 | 'help' => $this->get_help(), |
| 92 | 'self' => static::class, |
| 93 | ); |
| 94 | } |
| 95 | |
| 96 | } |
| 97 |