Automatic WordPress security: local firewall, malware and file-integrity scanning, vulnerability protection, quarantine, scheduled backups, an optional page cache, and automatic global threat intelligence. See README.md for installation, update, and uninstall instructions.
15 lines
272 B
PHP
15 lines
272 B
PHP
<?php
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
class Argus_Deactivator {
|
|
|
|
public static function deactivate() {
|
|
wp_clear_scheduled_hook( 'argus_wpd_hourly' );
|
|
wp_clear_scheduled_hook( 'argus_wpd_daily' );
|
|
wp_clear_scheduled_hook( 'argus_wpd_five_minutes' );
|
|
}
|
|
}
|