PluginProbe
Ever Compare – Products Compare Plugin for WooCommerce / 1.2.0
Ever Compare – Products Compare Plugin for WooCommerce v1.2.0
1.3.7 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 trunk 1.0.0 1.0.1 1.0.2 All 31 releases
ever-compare / uninstall.php

uninstall.php in Ever Compare – Products Compare Plugin for WooCommerce 1.2.0, at uninstall.php

22 lines 633 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 * EverCompare Uninstall plugin
4 * Uninstalling EverCompare deletes page, and options.
5 */
6
7 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) exit; // Exit if accessed directly
8
9 function ever_compare_uninstall(){
10
11 // Delete page created for this plugin
12 $option_data = get_option( 'ever_compare_table_settings_tabs' );
13 wp_delete_post( $option_data['compare_page'], true );
14
15 // Option delete
16 delete_option( 'evercompare_version' );
17 delete_option( 'ever_compare_settings_tabs' );
18 delete_option( 'ever_compare_table_settings_tabs' );
19 delete_option( 'ever_compare_style_tabs' );
20
21 }
22 ever_compare_uninstall();