File: /opt/aphex/sites/pbfguild.com/wp-content/plugins/ip-location-block/uninstall.php
<?php
/**
* Fired when the plugin is uninstalled.
*
* @package IP_Location_Block
* @author tokkonopapa <[email protected]>
* @license GPL-3.0
* @link https://iplocationblock.com/
* @copyright 2013-2019 tokkonopapa
*/
// If uninstall not called from WordPress, then exit
defined( 'WP_UNINSTALL_PLUGIN' ) or die;
define( 'IP_LOCATION_BLOCK_PATH', plugin_dir_path( __FILE__ ) ); // @since 0.2.8
require IP_LOCATION_BLOCK_PATH . 'classes/class-ip-location-block.php';
require IP_LOCATION_BLOCK_PATH . 'classes/class-ip-location-block-util.php';
require IP_LOCATION_BLOCK_PATH . 'classes/class-ip-location-block-opts.php';
require IP_LOCATION_BLOCK_PATH . 'classes/class-ip-location-block-logs.php';
class IP_Location_Block_Uninstall {
/**
* Delete settings options, IP address cache, log.
*
*/
private static function delete_blog_options() {
delete_option( IP_Location_Block::OPTION_NAME ); // @since 1.2.0
delete_option( IP_Location_Block::OPTION_META ); // @since 3.0.17
IP_Location_Block_Logs::delete_tables();
}
/**
* Delete options from database when the plugin is uninstalled.
*
*/
public static function uninstall() {
$settings = IP_Location_Block::get_option();
if ( $settings['clean_uninstall'] ) {
if ( ! is_multisite() ) {
self::delete_blog_options( $settings );
}
else {
global $wpdb;
$blog_ids = $wpdb->get_col( "SELECT `blog_id` FROM `$wpdb->blogs`" );
foreach ( $blog_ids as $id ) {
switch_to_blog( $id );
self::delete_blog_options();
restore_current_blog();
}
}
}
IP_Location_Block_Opts::setup_validation_timing( FALSE );
}
}
IP_Location_Block_Uninstall::uninstall();