Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
itr-popup
:
uninstall.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Note: This file may contain artifacts of previous malicious infection. * However, the dangerous code has been removed, and the file is now safe to use. */ ?> <?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly //uninstall not called from WordPress exit if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) {exit ();} else { global $wpdb; include_once ('functions/core-function.php'); include_once ('functions/database-function.php'); if( itro_get_option('delete_data') == 'yes' ) { $preview_id = itro_get_option('preview_id'); //delete preview page wp_delete_post( $preview_id , true ); delete_option('itro_curr_ver'); delete_option('itro_prev_ver'); $wpdb->query("DROP TABLE " . $wpdb->prefix . "itro_plugin_option"); $wpdb->query("DROP TABLE " . $wpdb->prefix . "itro_plugin_field"); } } ?>