forked from strangerstudios/paid-memberships-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uninstall.php
60 lines (51 loc) · 1.81 KB
/
uninstall.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
/**
* Leave no trace...
* Use this file to remove all elements added by plugin, including database table
*/
// exit if uninstall/delete not called
if (!defined('ABSPATH') && !defined('WP_UNINSTALL_PLUGIN'))
exit();
// otherwise remove pages
$pmpro_pages = array(
'account' => get_option( 'pmpro_account_page_id' ),
'billing' => get_option( 'pmpro_billing_page_id' ),
'cancel' =>get_option( 'pmpro_cancel_page_id' ),
'checkout' => get_option( 'pmpro_checkout_page_id' ),
'confirmation' => get_option( 'pmpro_confirmation_page_id' ),
'invoice' => get_option( 'pmpro_invoice_page_id' ),
'levels' => get_option( 'pmpro_levels_page_id' )
);
foreach ( $pmpro_pages as $pmpro_page_id => $pmpro_page ) {
$shortcode_prefix = 'pmpro_';
$shortcode = '[' . $shortcode_prefix . $pmpro_page_id . ']';
$post = get_post( $pmpro_page );
// If shortcode is found at the beginning of the page content and it is the only content that exists, remove the page
if ( strpos( $post->post_content, $shortcode ) === 0 && strcmp( $post->post_content, $shortcode ) === 0 )
wp_delete_post( $post->ID, true ); // Force delete (no trash)
}
// otherwise remove db tables
global $wpdb;
$tables = array(
'pmpro_discount_codes',
'pmpro_discount_codes_levels',
'pmpro_discount_codes_uses',
'pmpro_memberships_categories',
'pmpro_memberships_pages',
'pmpro_memberships_users',
'pmpro_membership_levels',
'pmpro_membership_orders'
);
foreach($tables as $table){
$delete_table = $wpdb->prefix . $table;
// setup sql query
$sql = "DROP TABLE `$delete_table`";
// run the query
$wpdb->query($sql);
}
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
dbDelta($sql);
//delete options
global $wpdb;
$sqlQuery = "DELETE FROM $wpdb->options WHERE option_name LIKE 'pmpro_%'";
$wpdb->query($sqlQuery);