PluginProbe ʕ •ᴥ•ʔ
WP Fastest Cache – WordPress Cache Plugin / 0.9.1.8
WP Fastest Cache – WordPress Cache Plugin v0.9.1.8
1.4.9 1.4.8 trunk 0.8.6.6 0.8.6.7 0.8.6.8 0.8.6.9 0.8.7.0 0.8.7.1 0.8.7.2 0.8.7.3 0.8.7.4 0.8.7.5 0.8.7.6 0.8.7.7 0.8.7.8 0.8.7.9 0.8.8.0 0.8.8.1 0.8.8.2 0.8.8.3 0.8.8.4 0.8.8.5 0.8.8.6 0.8.8.7 0.8.8.8 0.8.8.9 0.8.9.0 0.8.9.1 0.8.9.2 0.8.9.3 0.8.9.4 0.8.9.5 0.8.9.6 0.8.9.7 0.8.9.8 0.8.9.9 0.9.0.0 0.9.0.1 0.9.0.2 0.9.0.3 0.9.0.4 0.9.0.5 0.9.0.6 0.9.0.7 0.9.0.8 0.9.0.9 0.9.1.0 0.9.1.1 0.9.1.2 0.9.1.3 0.9.1.4 0.9.1.5 0.9.1.6 0.9.1.7 0.9.1.8 0.9.1.9 0.9.2 0.9.3 0.9.4 0.9.5 0.9.6 0.9.7 0.9.8 0.9.9 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 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 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7
wp-fastest-cache / uninstall.php
wp-fastest-cache Last commit date
css 5 years ago images 6 years ago inc 5 years ago js 5 years ago languages 6 years ago templates 5 years ago index.html 11 years ago readme.txt 5 years ago uninstall.php 5 years ago wpFastestCache.php 5 years ago
uninstall.php
59 lines
1 <?php
2 /**
3 * Runs on Uninstall of WP Fastest Cache
4 *
5 * @package WP Fastest Cache
6 * @author Emre Vona
7 * @license GPL-2.0+
8 * @link http://wordpress.org/plugins/wp-fastest-cache/
9 */
10
11 // if uninstall.php is not called by WordPress, die
12 if(!defined('WP_UNINSTALL_PLUGIN')){
13 die;
14 }
15
16 include_once("wpFastestCache.php");
17
18 wpfastestcache_deactivate();
19
20 delete_option("WpFastestCache");
21 delete_option("WpFcDeleteCacheLogs");
22 delete_option("WpFastestCacheCDN");
23 delete_option("WpFastestCacheExclude");
24 delete_option("WpFastestCachePreLoad");
25 delete_option("WpFastestCacheCSS");
26 delete_option("WpFastestCacheCSSSIZE");
27 delete_option("WpFastestCacheJS");
28 delete_option("WpFastestCacheJSSIZE");
29 delete_option("WpFastestCacheXML");
30 delete_option("WpFastestCacheXMLSIZE");
31 delete_option("WpFastestCacheSVG");
32 delete_option("WpFastestCacheSVGSIZE");
33 delete_option("WpFastestCacheJSON");
34 delete_option("WpFastestCacheJSONSIZE");
35 delete_option("WpFastestCacheWOFF");
36 delete_option("WpFastestCacheWOFFSIZE");
37 delete_option("WpFastestCacheToolbarSettings");
38 delete_option("wpfc_server_location");
39 delete_option("wpfc-group");
40 delete_option("WpFc_credit");
41 delete_option("WpFc_api_key");
42 delete_transient("wpfc_premium_update_info");
43
44 foreach ((array)_get_cron_array() as $cron_key => $cron_value) {
45 foreach ( (array) $cron_value as $hook => $events ) {
46 if(preg_match("/^wp\_fastest\_cache/", $hook)){
47 $args = array();
48
49 foreach ( (array) $events as $event_key => $event ) {
50 if(isset($event["args"]) && isset($event["args"][0])){
51 $args = array(json_encode(json_decode($event["args"][0])));
52 }
53 }
54
55 wp_clear_scheduled_hook($hook, $args);
56 }
57 }
58 }
59 ?>