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