This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include
, or for example
via PHP's auto-loading mechanism.
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
1 | <?php |
||
2 | /** |
||
3 | * Uninstall Give |
||
4 | * |
||
5 | * @package Give |
||
6 | * @subpackage Uninstall |
||
7 | * @copyright Copyright (c) 2016, WordImpress |
||
8 | * @license https://opensource.org/licenses/gpl-license GNU Public License |
||
9 | * @since 1.0 |
||
10 | */ |
||
11 | |||
12 | // Exit if accessed directly. |
||
13 | if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { |
||
14 | exit; |
||
15 | } |
||
16 | |||
17 | // Load Give file. |
||
18 | include_once( 'give.php' ); |
||
19 | |||
20 | global $wpdb, $wp_roles; |
||
21 | |||
22 | |||
23 | if ( give_is_setting_enabled( give_get_option( 'uninstall_on_delete' ) ) ) { |
||
24 | |||
25 | // Delete All the Custom Post Types. |
||
26 | $give_taxonomies = array( 'form_category', 'form_tag' ); |
||
27 | $give_post_types = array( 'give_forms', 'give_payment' ); |
||
28 | foreach ( $give_post_types as $post_type ) { |
||
29 | |||
30 | $give_taxonomies = array_merge( $give_taxonomies, get_object_taxonomies( $post_type ) ); |
||
31 | $items = get_posts( array( |
||
32 | 'post_type' => $post_type, |
||
33 | 'post_status' => 'any', |
||
34 | 'numberposts' => - 1, |
||
35 | 'fields' => 'ids', |
||
36 | ) ); |
||
37 | |||
38 | if ( $items ) { |
||
39 | foreach ( $items as $item ) { |
||
40 | wp_delete_post( $item, true ); |
||
41 | } |
||
42 | } |
||
43 | } |
||
44 | |||
45 | // Delete All the Terms & Taxonomies. |
||
46 | foreach ( array_unique( array_filter( $give_taxonomies ) ) as $taxonomy ) { |
||
47 | |||
48 | $terms = $wpdb->get_results( $wpdb->prepare( "SELECT t.*, tt.* FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy IN ('%s') ORDER BY t.name ASC", $taxonomy ) ); |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
49 | |||
50 | // Delete Terms. |
||
51 | if ( $terms ) { |
||
52 | foreach ( $terms as $term ) { |
||
53 | $wpdb->delete( $wpdb->term_taxonomy, array( 'term_taxonomy_id' => $term->term_taxonomy_id ) ); |
||
54 | $wpdb->delete( $wpdb->terms, array( 'term_id' => $term->term_id ) ); |
||
55 | } |
||
56 | } |
||
57 | |||
58 | // Delete Taxonomies. |
||
59 | $wpdb->delete( $wpdb->term_taxonomy, array( 'taxonomy' => $taxonomy ), array( '%s' ) ); |
||
60 | } |
||
61 | |||
62 | // Delete the Plugin Pages. |
||
63 | $give_created_pages = array( 'success_page', 'failure_page', 'history_page' ); |
||
64 | foreach ( $give_created_pages as $p ) { |
||
65 | $page = give_get_option( $p, false ); |
||
66 | if ( $page ) { |
||
67 | wp_delete_post( $page, true ); |
||
68 | } |
||
69 | } |
||
70 | |||
71 | // Delete Capabilities. |
||
72 | Give()->roles = new Give_Roles(); |
||
73 | Give()->roles->remove_caps(); |
||
74 | |||
75 | // Delete the Roles. |
||
76 | $give_roles = array( 'give_manager', 'give_accountant', 'give_worker', 'give_donor' ); |
||
77 | foreach ( $give_roles as $role ) { |
||
78 | remove_role( $role ); |
||
79 | } |
||
80 | |||
81 | // Remove all database tables. |
||
82 | $wpdb->query( 'DROP TABLE IF EXISTS ' . $wpdb->prefix . 'give_donors' ); |
||
0 ignored issues
–
show
|
|||
83 | $wpdb->query( 'DROP TABLE IF EXISTS ' . $wpdb->prefix . 'give_donormeta' ); |
||
0 ignored issues
–
show
|
|||
84 | $wpdb->query( 'DROP TABLE IF EXISTS ' . $wpdb->prefix . 'give_customers' ); |
||
0 ignored issues
–
show
|
|||
85 | $wpdb->query( 'DROP TABLE IF EXISTS ' . $wpdb->prefix . 'give_customermeta' ); |
||
0 ignored issues
–
show
|
|||
86 | $wpdb->query( 'DROP TABLE IF EXISTS ' . $wpdb->prefix . 'give_paymentmeta' ); |
||
0 ignored issues
–
show
|
|||
87 | $wpdb->query( 'DROP TABLE IF EXISTS ' . $wpdb->prefix . 'give_formmeta' ); |
||
0 ignored issues
–
show
|
|||
88 | $wpdb->query( 'DROP TABLE IF EXISTS ' . $wpdb->prefix . 'give_logs' ); |
||
0 ignored issues
–
show
|
|||
89 | $wpdb->query( 'DROP TABLE IF EXISTS ' . $wpdb->prefix . 'give_logmeta' ); |
||
0 ignored issues
–
show
|
|||
90 | $wpdb->query( 'DROP TABLE IF EXISTS ' . $wpdb->prefix . 'give_sequential_ordering' ); |
||
0 ignored issues
–
show
|
|||
91 | $wpdb->query( 'DROP TABLE IF EXISTS ' . $wpdb->prefix . 'give_sessions' ); |
||
0 ignored issues
–
show
|
|||
92 | |||
93 | // Cleanup Cron Events. |
||
94 | wp_clear_scheduled_hook( 'give_daily_scheduled_events' ); |
||
95 | wp_clear_scheduled_hook( 'give_weekly_scheduled_events' ); |
||
96 | wp_clear_scheduled_hook( 'give_daily_cron' ); |
||
97 | wp_clear_scheduled_hook( 'give_weekly_cron' ); |
||
98 | |||
99 | // Get all options. |
||
100 | $give_option_names = $wpdb->get_col( |
||
0 ignored issues
–
show
|
|||
101 | $wpdb->prepare( |
||
102 | "SELECT option_name FROM {$wpdb->options} where option_name LIKE '%%%s%%'", |
||
103 | 'give' |
||
104 | ) |
||
105 | ); |
||
106 | |||
107 | if ( ! empty( $give_option_names ) ) { |
||
108 | // Convert option name to transient or option name. |
||
109 | $new_give_option_names = array(); |
||
110 | |||
111 | // Delete all the Plugin Options. |
||
112 | foreach ( $give_option_names as $option ) { |
||
113 | if ( false !== strpos( $option, 'give_cache' ) ) { |
||
114 | Give_Cache::delete( $option ); |
||
115 | } else { |
||
116 | delete_option( $option ); |
||
117 | } |
||
118 | } |
||
119 | } |
||
120 | } |
||
121 |