PluginProbe
Gantry 5 Framework / trunk
Gantry 5 Framework vtrunk
5.6.4 5.6.3 trunk 5.1.2 5.1.3 5.1.4 5.1.5 5.1.6 5.2.0 5.2.1 5.2.10 5.2.11 5.2.12 5.2.13 5.2.14 5.2.15 5.2.17 5.2.18 5.2.2 5.2.3 5.2.4 5.2.5 5.2.6 5.2.7 5.2.8 All 90 releases
gantry5 / uninstall.php

uninstall.php in Gantry 5 Framework trunk, at uninstall.php

15 lines 373 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 // If uninstall is not called from WordPress, exit
3 if (!defined('WP_UNINSTALL_PLUGIN')) {
4 exit();
5 }
6
7 global $wp_filesystem;
8
9 // Remove cache (also parent directory but only if it's empty).
10 $wp_filesystem->rmdir(WP_CONTENT_DIR . '/cache/gantry5', true);
11 $wp_filesystem->rmdir(WP_CONTENT_DIR . '/cache', false);
12
13 // Remove options.
14 delete_option('gantry5_plugin');
15