PluginProbe
MLSImport: IDX Plugin & MLS Plugin for Real Estate Listings / 7.2
MLSImport: IDX Plugin & MLS Plugin for Real Estate Listings v7.2
7.2 7.1.2 7.1.1 7.1 7.0.4 7.0.6 7.0.7 6.3.8 6.3.7 6.3.6 6.3.5 6.3.4 6.3.3 6.3.1 trunk 5.7.3 5.7.5 5.8.1 5.8.2 5.8.3 5.8.4 5.8.6 6.0.4 6.0.5 6.0.7 All 35 releases
← All changes | uninstall.php +4 -0 5.7.57.2 View file →
@@ -25,7 +25,11 @@
25 25 * @package Mlsimport
26 26 */
27 27
28 28 // If uninstall not called from WordPress, then exit.
29 +// Guard: WordPress only defines WP_UNINSTALL_PLUGIN when running the uninstall hook,
30 +// so any direct request to this file bails out here before any code runs.
29 31 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
30 32 exit;
31 33 }
34 +// NOTE: past the guard the file currently performs no cleanup — the boilerplate skeleton
35 +// only guards its entry point; no options/CPT/meta removal is implemented here.