PluginProbe
Print, PDF & Email by PrintFriendly / 5.5.13
Print, PDF & Email by PrintFriendly v5.5.13
5.5.13 5.5.12 5.5.11 trunk 0.2 0.9 1.0 2.0 2.1.8 3.0 3.0.9 3.1.6 3.10.0 3.11.0 3.11.1 3.11.2 3.12.0 3.12.1 3.12.2 3.12.3 3.12.4 3.12.5 3.13.0 3.14.0 3.14.1 All 95 releases
printfriendly / uninstall.php

uninstall.php in Print, PDF & Email by PrintFriendly 5.5.13, at uninstall.php

30 lines 926 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if (! defined('ABSPATH') && ! defined('WP_UNINSTALL_PLUGIN')) {
4 exit();
5 }
6
7 delete_option('printfriendly_option');
8
9 // Pro card v2 (includes/class-printfriendly-pro-card.php)
10 delete_option('printfriendly_pro_site_token');
11 delete_option('printfriendly_pro_handoff');
12 delete_option('printfriendly_pro_status');
13 delete_option('printfriendly_pro_prefs');
14 delete_option('printfriendly_pro_stub_state');
15
16 // Make sure any old options which may still lurking about get deleted as well
17 delete_option('pf_button_type');
18 delete_option('pf_custom_image');
19 delete_option('pf_custom_text');
20 delete_option('pf_custom_both');
21 delete_option('pf_show_list');
22 delete_option('pf_content_placement');
23 delete_option('pf_content_position');
24 delete_option('pf_margin_top');
25 delete_option('pf_margin_right');
26 delete_option('pf_margin_bottom');
27 delete_option('pf_margin_left');
28 delete_option('pf_text_color');
29 delete_option('pf_text_size');
30