21 lines
590 B
PHP
21 lines
590 B
PHP
|
|
<?php
|
||
|
|
if (!defined('WP_UNINSTALL_PLUGIN')) exit;
|
||
|
|
|
||
|
|
// Remove all plugin options
|
||
|
|
delete_option('itk_security');
|
||
|
|
delete_option('itk_optimization');
|
||
|
|
delete_option('itk_honeypot');
|
||
|
|
delete_option('itk_hp_secret');
|
||
|
|
delete_option('itk_db_version');
|
||
|
|
|
||
|
|
// Remove transients
|
||
|
|
delete_transient('itk_bots_list');
|
||
|
|
delete_transient('itk_referrers_list');
|
||
|
|
delete_transient('itk_networks_list');
|
||
|
|
delete_transient('itk_goodbots_list');
|
||
|
|
|
||
|
|
// Drop database tables
|
||
|
|
global $wpdb;
|
||
|
|
$wpdb->query("DROP TABLE IF EXISTS {$wpdb->prefix}itk_bot_log");
|
||
|
|
$wpdb->query("DROP TABLE IF EXISTS {$wpdb->prefix}itk_honeypot_log");
|