PluginProbe
Banhammer – Monitor Site Traffic, Block Bad Users and Bots / trunk
Banhammer – Monitor Site Traffic, Block Bad Users and Bots vtrunk
3.5.3 trunk 1.1 1.2 1.3 1.4 1.5 1.5.1 1.6 1.7 1.8 1.9 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 2.8.1 2.8.2 2.9 3.0 All 43 releases
banhammer / uninstall.php

uninstall.php in Banhammer – Monitor Site Traffic, Block Bad Users and Bots trunk, at uninstall.php

17 lines 545 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php // Uninstall Plugin
2
3 if (!defined('ABSPATH') && !defined('WP_UNINSTALL_PLUGIN')) exit();
4
5 delete_option('banhammer_settings');
6 delete_option('banhammer_armory');
7 delete_option('banhammer_tower');
8 delete_option('banhammer_secret_key');
9 delete_option('banhammer-dismiss-notice');
10
11 $timestamp = wp_next_scheduled('banhammer_cron_reset');
12 wp_unschedule_event($timestamp, 'banhammer_cron_reset');
13 wp_clear_scheduled_hook('banhammer_cron_reset');
14
15 global $wpdb;
16 $table = $wpdb->prefix .'banhammer';
17 $wpdb->query('DROP TABLE IF EXISTS '. $table);