<?php
namespace BwWinnersGlobalSite;

// If uninstall not called from WordPress, then exit.
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
	exit;
}

if ( UNINSTALL_DROP_TABLES ) {
	require_once plugin_dir_path( PLUGIN_PATH ) . 'includes/database/class-database.php';
	Database::drop_tables_all_sites();
}
