forked from wp-media/imagify-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuninstall.php
executable file
·29 lines (21 loc) · 1.02 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
<?php
defined( 'WP_UNINSTALL_PLUGIN' ) || die( 'Cheatin’ uh?' );
global $wpdb;
// Delete Imagify options.
delete_site_option( 'imagify_settings' );
// Delete all transients.
delete_site_transient( 'imagify_check_licence_1' );
delete_site_transient( 'imagify_bulk_optimization_level' );
delete_site_transient( 'imagify_large_library' );
delete_site_transient( 'imagify_max_image_size' );
// Clear scheduled hooks.
wp_clear_scheduled_hook( 'imagify_rating_event' );
wp_clear_scheduled_hook( 'imagify_update_library_size_calculations_event' );
// WP transients.
$wpdb->query( 'DELETE from ' . $wpdb->options . ' WHERE option_name LIKE "_transient_imagify-async-in-progress-%"' );
// NextGen Gallery transients.
$wpdb->query( 'DELETE from ' . $wpdb->options . ' WHERE option_name LIKE "_transient_imagify-ngg-async-in-progress-%"' );
// Delete all user meta related to Imagify.
delete_metadata( 'user', '', '_imagify_ignore_notices', '', true );
// Drop the tables.
$wpdb->query( 'DROP TABLE IF EXISTS ' . $wpdb->ngg_imagify_data );