File: /var/www/clients/client6/web57/web/wp-content/plugins/link-manager/uninstall.php
<?php
/**
* LinkManager uninstall script.
*
* Fired when the plugin is deleted via the WordPress admin.
*/
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit;
}
$options = array(
'lm_panel_url',
'lm_site_token',
'lm_hmac_secret',
'lm_allowed_ips',
'lm_link_positions',
'lm_active_links',
'lm_last_heartbeat',
);
foreach ( $options as $option ) {
delete_option( $option );
}
// Clear any scheduled cron events.
wp_clear_scheduled_hook( 'lm_heartbeat_event' );