PluginProbe
Smart Image Resize for WooCommerce / trunk
Smart Image Resize for WooCommerce vtrunk
1.17.1 1.17.0 1.16.0 trunk 1.1.10 1.1.11 1.1.12 1.10.0 1.10.1 1.10.2 1.12.0 1.12.1 1.13.0 1.13.1 1.15.0 1.15.1 1.2.0 1.2.1 1.2.2 1.2.3 1.3 1.3.1 1.3.2 1.3.3 1.3.4 All 52 releases
smart-image-resize / uninstall.php

uninstall.php in Smart Image Resize for WooCommerce trunk, at uninstall.php

16 lines 364 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Fired when the plugin is uninstalled (deleted via WP admin).
4 *
5 * @package WP_Smart_Image_Resize
6 */
7
8 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
9 exit;
10 }
11
12 require_once plugin_dir_path( __FILE__ ) . 'src/Singleton_Trait.php';
13 require_once plugin_dir_path( __FILE__ ) . 'src/Bulk_Processor.php';
14
15 WP_Smart_Image_Resize\Bulk_Processor::uninstall();
16