PluginProbe
SendWP / 1.4.8
SendWP v1.4.8
trunk 0.0.1 0.0.2 0.0.3 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1 1.2.10 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3 1.3.1 1.4.4 1.4.5 1.4.6 1.4.8
sendwp / includes / deactivation.php

deactivation.php in SendWP 1.4.8, at includes/deactivation.php

17 lines 455 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 });