MOON
Server: Apache
System: Linux server.netcommlabs.in 3.10.0-1160.83.1.el7.x86_64 #1 SMP Wed Jan 25 16:41:43 UTC 2023 x86_64
User: dermova (1051)
PHP: 5.4.45
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/dermova/www/india/wp-content/plugins/yith-woocommerce-wishlist/uninstall.php
<?php
/**
 * Uninstall plugin
 *
 * @author Your Inspiration Themes
 * @package YITH WooCommerce Wishlist
 * @version 1.1.5
 */

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

global $wpdb;
	
// Delete option from options table
delete_option( 'yith_wcwl_version' );
delete_option( 'yith_wcwl_db_version' );

//delete pages created for this plugin
wp_delete_post( get_option( 'yith-wcwl-pageid' ), true );

//remove any additional options and custom table
$sql = "DROP TABLE `" . $wpdb->yith_wcwl_items . "`";
$wpdb->query( $sql );
$sql = "DROP TABLE `" . $wpdb->yith_wcwl_wishlists . "`";
$wpdb->query( $sql );
?>