Linux hkvL61zh9Vexzf 3.10.0-957.1.3.el7.x86_64 #1 SMP Thu Nov 29 14:49:43 UTC 2018 x86_64 Path : /www/wwwroot/fashion-kingdom.com/wp-content/plugins/siteguard/ |
Current File : /www/wwwroot/fashion-kingdom.com/wp-content/plugins/siteguard/uninstall.php |
<?php if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { exit(); } function remove_directory( $dir ) { $files = array_diff( scandir( $dir ), array( '.' ,'..' ) ); foreach ( $files as $file ) { if ( is_dir( "$dir/$file" ) ) { remove_directory( "$dir/$file" ); } else { unlink( "$dir/$file" ); } } return rmdir( $dir ); } function delete_siteguard_plugin() { global $wpdb; delete_option( 'siteguard_config' ); $table_name = $wpdb->prefix . 'siteguard_login'; $wpdb->query( "DROP TABLE IF EXISTS $table_name;" ); $table_name = $wpdb->prefix . 'siteguard_history'; $wpdb->query( "DROP TABLE IF EXISTS $table_name;" ); remove_directory( WP_CONTENT_DIR . '/siteguard' ); } delete_siteguard_plugin();