| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentSupport\App\Hooks\Handlers; |
| 4 |
|
| 5 |
class DeactivationHandler |
| 6 |
{ |
| 7 |
public function handle() |
| 8 |
{ |
| 9 |
wp_clear_scheduled_hook('fluent_support_hourly_tasks'); |
| 10 |
wp_clear_scheduled_hook('fluent_support_daily_tasks'); |
| 11 |
wp_clear_scheduled_hook('fluent_support_weekly_tasks'); |
| 12 |
|
| 13 |
if (function_exists('as_unschedule_all_actions')) { |
| 14 |
as_unschedule_all_actions('fluent_support_half_hourly', [], 'fluent-support'); |
| 15 |
} |
| 16 |
} |
| 17 |
} |
| 18 |
|