HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.2.34
System: Linux atalantini.com 3.10.0-1127.13.1.el7.x86_64 #1 SMP Tue Jun 23 15:46:38 UTC 2020 x86_64
User: root (0)
PHP: 7.2.34
Disabled: NONE
Upload Files
File: //opt/plugins/bulk-move/uninstall.php
<?php
/**
 * Uninstall file for Bulk Move plugin.
 *
 * @since 1.2
 *
 * @author Sudar
 */

//if uninstall not called from WordPress exit
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) )
	exit();

$option_name = 'bm_max_execution_time';

if ( ! is_multisite() ) {
	// For Single site
	delete_option( $option_name );
} else {
	// For Multisite
	global $wpdb;

	// For regular options.
	$blog_ids         = $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" );
	$original_blog_id = get_current_blog_id();

	foreach ( $blog_ids as $blog_id ) {
		switch_to_blog( $blog_id );
		delete_option( $option_name );
	}
	switch_to_blog( $original_blog_id );

	// For site options.
	delete_site_option( $option_name );
}