| 1 |
<?php |
| 2 |
|
| 3 |
register_deactivation_hook(plugin_dir_path(__DIR__) . 'sendwp.php', function () { |
| 4 |
$options = [ |
| 5 |
'sendwp_client_secret', |
| 6 |
'sendwp_client_connected', |
| 7 |
'sendwp_forwarding_enabled', |
| 8 |
'_transient_timeout_sendwp_pulse_monitor', |
| 9 |
'_transient_sendwp_pulse_monitor', |
| 10 |
]; |
| 11 |
|
| 12 |
foreach ($options as $option) { |
| 13 |
if (get_option($option, false) !== false) { |
| 14 |
delete_option($option); |
| 15 |
} |
| 16 |
} |
| 17 |
}); |