| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentCart\App\Hooks\Handlers; |
| 4 |
|
| 5 |
class DeactivationHandler |
| 6 |
{ |
| 7 |
public function handle() |
| 8 |
{ |
| 9 |
if (function_exists('as_unschedule_action')) { |
| 10 |
as_unschedule_action('fluent_cart/scheduler/five_minutes_tasks'); |
| 11 |
} |
| 12 |
|
| 13 |
wp_clear_scheduled_hook('fluent_cart/scheduler/five_minutes_tasks'); |
| 14 |
wp_clear_scheduled_hook('fluent_cart/scheduler/hourly_tasks'); |
| 15 |
wp_clear_scheduled_hook('fluent_cart/scheduler/daily_tasks'); |
| 16 |
} |
| 17 |
} |
| 18 |
|