Current Path : /home2/church/public_html/edssnow.com/wp-content/plugins/woocommerce-bookings/ |
Current File : //home2/church/public_html/edssnow.com/wp-content/plugins/woocommerce-bookings/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' ); }