<?php
/**
 * Uninstall script for BW Map Magnet.
 *
 * Runs when the plugin is deleted via the WP Admin plugins screen.
 * Cleans up options and custom tables.
 */

defined( 'WP_UNINSTALL_PLUGIN' ) || exit;

// Delete plugin options.
delete_option( 'bw_map_magnet_settings' );
delete_option( 'bw_map_magnet_version' );

// Delete site meta on multisite.
if ( is_multisite() ) {
	delete_site_option( 'bw_map_magnet_settings' );
}
