interfaces
2 years ago
traits
2 years ago
async-job.php
2 years ago
module.php
2 years ago
once-job.php
2 years ago
recurring-job.php
2 years ago
async-job.php
31 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Jobs; |
| 5 | |
| 6 | use JFB_Modules\Jobs\Interfaces\Job_It; |
| 7 | use JFB_Modules\Jobs\Traits\Job_Trait; |
| 8 | |
| 9 | // If this file is called directly, abort. |
| 10 | if ( ! defined( 'WPINC' ) ) { |
| 11 | die(); |
| 12 | } |
| 13 | |
| 14 | |
| 15 | class Async_Job implements Job_It { |
| 16 | |
| 17 | use Job_Trait; |
| 18 | |
| 19 | public function schedule(): int { |
| 20 | if ( ! function_exists( 'as_enqueue_async_action' ) ) { |
| 21 | return 0; |
| 22 | } |
| 23 | |
| 24 | return as_enqueue_async_action( |
| 25 | $this->get_hook(), |
| 26 | $this->get_args(), |
| 27 | \JFB_Modules\Post_Type\Module::SLUG |
| 28 | ); |
| 29 | } |
| 30 | } |
| 31 |