never-event.php
35 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Actions\Events\Never; |
| 5 | |
| 6 | use Jet_Form_Builder\Actions\Events\Base_Event; |
| 7 | use Jet_Form_Builder\Classes\Arrayable\Array_Continue_Exception; |
| 8 | |
| 9 | // If this file is called directly, abort. |
| 10 | if ( ! defined( 'WPINC' ) ) { |
| 11 | die; |
| 12 | } |
| 13 | |
| 14 | class Never_Event extends Base_Event { |
| 15 | |
| 16 | public function get_id(): string { |
| 17 | return 'never'; |
| 18 | } |
| 19 | |
| 20 | public function executors(): array { |
| 21 | return array(); |
| 22 | } |
| 23 | |
| 24 | public function execute() { |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * @return array |
| 29 | * @throws Array_Continue_Exception |
| 30 | */ |
| 31 | public function to_array(): array { |
| 32 | throw new Array_Continue_Exception( 'This is hidden event' ); |
| 33 | } |
| 34 | } |
| 35 |