1
0
mirror of https://git.feneas.org/mediaformat/fediembedi synced 2024-12-22 09:24:21 +01:00
fediembedi-wordpress-widget.../uninstall.php
Django Doucet 648c4cef6f Unregister authorized widgets if tokens empty
Delete widget options on uninstall
2020-02-01 01:40:49 -05:00

29 lines
870 B
PHP

<?php
if (!defined('WP_UNINSTALL_PLUGIN')) {
die;
}
delete_option( 'fediembedi-notice' );
//original options < 0.8.0
delete_option( 'fediembedi-client-id' );
delete_option( 'fediembedi-client-secret' );
delete_option( 'fediembedi-token' );
delete_option( 'fediembedi-instance' );
delete_option( 'fediembedi-instance-info' );
delete_option( 'fediembedi-instance-type' );
//pixelfed
delete_option('fediembedi-pixelfed-client-id');
delete_option('fediembedi-pixelfed-client-secret');
delete_option('fediembedi-pixelfed-token');
delete_option('fediembedi-pixelfed-instance');
delete_option('fediembedi-pixelfed-token');
//mastodon
delete_option('fediembedi-mastodon-client-id');
delete_option('fediembedi-mastodon-client-secret');
delete_option('fediembedi-mastodon-token');
delete_option('fediembedi-mastodon-instance');
delete_option('fediembedi-mastodon-token');