ARGUS WordPress Defence 1.0.0 — first production release

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.
This commit is contained in:
root
2026-08-09 13:40:16 +00:00
commit df0f2fccb8
73 changed files with 12302 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<?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' );
}
}