Sindbad~EG File Manager

Current Path : /home/escuelai/public_html/eihu.edu.uy/wp-content/plugins/styles/
Upload File :
Current File : /home/escuelai/public_html/eihu.edu.uy/wp-content/plugins/styles/uninstall.php

<?php
/**
 * Uninstalls the Styles options when an uninstall has been requested 
 * from the WordPress admin
 */

// If uninstall/delete not called from WordPress then exit
if( ! defined ( 'ABSPATH' ) && ! defined ( 'WP_UNINSTALL_PLUGIN' ) )
	exit;

global $wpdb;

if( is_multisite() ){
	
	// Site network: remove options from each blog
	$blog_ids = $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" );
	
	if( $blog_ids ){

		foreach( $blog_ids as $id ) {
			switch_to_blog( $id );

			delete_option( 'storm-styles' );
			
			restore_current_blog();
		}

	}

}else {
	// Single site
	delete_option( 'storm-styles' );
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists