job-it.php
2 years ago
job-logger-it.php
2 years ago
once-job-it.php
2 years ago
recurring-job-it.php
2 years ago
self-execution-job-it.php
2 years ago
time-based-it.php
2 years ago
self-execution-job-it.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Jobs\Interfaces; |
| 5 | |
| 6 | use JFB_Components\Repository\Repository_Item_Instance_Trait; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die(); |
| 11 | } |
| 12 | |
| 13 | interface Self_Execution_Job_It extends Job_It, Repository_Item_Instance_Trait { |
| 14 | |
| 15 | public function init_hooks(); |
| 16 | |
| 17 | public function remove_hooks(); |
| 18 | |
| 19 | } |
| 20 |