BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
wp-content
/
plugins
/
robin-image-optimizer
/
libs
/
addons
📤 Upload
📝 New File
📁 New Folder
Close
Editing: uninstall.php
<?php // if uninstall.php is not called by WordPress, die if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { die; } // remove plugin options global $wpdb; // Main plugin file, to have files included file deleting WebP folder /* require_once( dirname( __FILE__ ) . '/robin-image-optimizer.php' ); if ( class_exists( 'WRIO_WebP_Api' ) ) { // Unlink WebP dir $path = WRIO_WebP_Api::get_base_dir_path(); if ( file_exists( $path ) ) { @unlink( $path ); } }*/
Save
Cancel