PluginProbe ʕ •ᴥ•ʔ
Robin Image Optimizer – Unlimited Image Optimization, WebP & AVIF / trunk
Robin Image Optimizer – Unlimited Image Optimization, WebP & AVIF vtrunk
2.0.5 trunk 1.3.7 1.4.0 1.4.1 1.4.2 1.4.6 1.5.0 1.5.3 1.5.6 1.5.8 1.6.5 1.6.6 1.6.9 1.7.0 1.7.4 1.8.1 1.8.2 1.9.0 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4
robin-image-optimizer / libs / addons / uninstall.php
robin-image-optimizer / libs / addons Last commit date
admin 5 months ago assets 3 years ago includes 3 months ago views 5 months ago index.php 5 months ago robin-image-optimizer-premium.php 5 months ago uninstall.php 5 months ago
uninstall.php
23 lines
1 <?php
2
3 // if uninstall.php is not called by WordPress, die
4 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
5 die;
6 }
7
8 // remove plugin options
9 global $wpdb;
10
11 // Main plugin file, to have files included file deleting WebP folder
12 /*
13 require_once( dirname( __FILE__ ) . '/robin-image-optimizer.php' );
14
15 if ( class_exists( 'WRIO_WebP_Api' ) ) {
16 // Unlink WebP dir
17 $path = WRIO_WebP_Api::get_base_dir_path();
18
19 if ( file_exists( $path ) ) {
20 @unlink( $path );
21 }
22 }*/
23