| 1 |
<?php |
| 2 |
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { |
| 3 |
exit; |
| 4 |
} |
| 5 |
// remove options when plugin uninstalled. |
| 6 |
delete_option( 'wpf_decr_checksum' ); |
| 7 |
delete_option( 'wpf_decr_key' ); |
| 8 |
delete_option( 'wpf_license_expires' ); |
| 9 |
delete_option( 'wpf_license' ); |
| 10 |
delete_option( 'wpf_license_key' ); |
| 11 |
delete_option( 'wpf_check_license_date' ); |
| 12 |
|