File: /var/www/iranga.kauko.lt/wp-content/plugins/woocommerce-bookings.bad/uninstall.php
<?php
/**
* Bookings Uninstall
*/
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit();
}
global $wpdb;
/*
* Only remove ALL product and page data if WC_REMOVE_ALL_DATA constant is set to true in user's
* wp-config.php. This is to prevent data loss when deleting the plugin from the backend
* and to ensure only the site owner can perform this action.
*/
if ( defined( 'WC_REMOVE_ALL_DATA' ) && true === WC_REMOVE_ALL_DATA ) {
// Tables
$wpdb->query( 'DROP TABLE IF EXISTS ' . $wpdb->prefix . 'wc_booking_relationships' );
}