403Webshell
Server IP : 15.235.198.142  /  Your IP : 216.73.216.153
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64
User : www-data ( 33)
PHP Version : 8.3.6
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/yme/wp-content/plugins/duplicator/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/yme/wp-content/plugins/duplicator/uninstall.php
<?php

/**
 * Fired when the plugin is uninstalled.
 *
 * Maintain PHP 5.2 compatibility, don't use namespace and don't include Duplicator Libs
 */

// If uninstall not called from WordPress, then exit
if (!defined('WP_UNINSTALL_PLUGIN')) {
    exit;
}

/**
 * Uninstall class
 * Maintain PHP 5.2 compatibility, don't use namespace and don't include Duplicator Libs.
 * This is a standalone class.
 */
class DuplicatorLiteUninstall // phpcs:ignore
{
    const PACKAGES_TABLE_NAME           = 'duplicator_packages';
    const VERSION_OPTION_KEY            = 'duplicator_version_plugin';
    const UNINSTALL_PACKAGE_OPTION_KEY  = 'duplicator_uninstall_package';
    const UNINSTALL_SETTINGS_OPTION_KEY = 'duplicator_uninstall_settings';
    const SSDIR_NAME_LEGACY             = 'wp-snapshots';
    const SSDIR_NAME_NEW                = 'backups-dup-lite';

    /**
     * Uninstall plugin
     *
     * @return void
     */
    public static function uninstall()
    {
        try {
            do_action('duplicator_unistall');
            self::removePackages();
            self::removeSettings();
            self::removePluginVersion();
        } catch (Exception $e) {
            // Prevent error on uninstall
        } catch (Error $e) {
            // Prevent error on uninstall
        }
    }

    /**
     * Remove plugin option version
     *
     * @return void
     */
    private static function removePluginVersion()
    {
        delete_option(self::VERSION_OPTION_KEY);
    }

    /**
     * Return duplicator PRO backup path legacy
     *
     * @return string
     */
    private static function getSsdirPathLegacy()
    {
        return trailingslashit(wp_normalize_path(realpath(ABSPATH))) . self::SSDIR_NAME_LEGACY;
    }

    /**
     * Return duplicator PRO backup path
     *
     * @return string
     */
    private static function getSsdirPathWpCont()
    {
        return trailingslashit(wp_normalize_path(realpath(WP_CONTENT_DIR))) . self::SSDIR_NAME_NEW;
    }

    /**
     * Remove all packages
     *
     * @return void
     */
    private static function removePackages()
    {
        global $wpdb;

        if (get_option(self::UNINSTALL_PACKAGE_OPTION_KEY) != true) {
            return;
        }

        $tableName = esc_sql($wpdb->base_prefix . self::PACKAGES_TABLE_NAME);
        $wpdb->query("DROP TABLE IF EXISTS {$tableName}");

        $fsystem = new WP_Filesystem_Direct(true);
        $fsystem->rmdir(self::getSsdirPathWpCont(), true);
        $fsystem->rmdir(self::getSsdirPathLegacy(), true);
    }

    /**
     * Remove plugins settings
     *
     * @return void
     */
    private static function removeSettings()
    {
        if (get_option(self::UNINSTALL_SETTINGS_OPTION_KEY) != true) {
            return;
        }

        self::deleteUserMetaKeys();
        self::deleteOptions();
        self::deleteTransients();
    }

    /**
     * Delete all users meta key
     *
     * @return void
     */
    private static function deleteUserMetaKeys()
    {
        /** @var wpdb */
        global $wpdb;

        $wpdb->query("DELETE FROM `{$wpdb->usermeta}` WHERE meta_key REGEXP '^duplicator_(?!pro_)'");
    }

    /**
     * Delete all options
     *
     * @return void
     */
    private static function deleteOptions()
    {
        /** @var wpdb */
        global $wpdb;

        $optionsTableName = esc_sql($wpdb->base_prefix . "options");
        $dupOptionNames   = $wpdb->get_col(
            "SELECT `option_name` FROM `{$optionsTableName}` WHERE `option_name` REGEXP '^duplicator_(?!pro_)'"
        );

        foreach ($dupOptionNames as $dupOptionName) {
            delete_option($dupOptionName);
        }
    }

    /**
     * Delete all transients
     *
     * @return void
     */
    private static function deleteTransients()
    {
        global $wpdb;

        $optionsTableName        = esc_sql($wpdb->base_prefix . "options");
        $dupOptionTransientNames = $wpdb->get_col(
            "SELECT `option_name` FROM `{$optionsTableName}` WHERE `option_name` REGEXP '^_transient_duplicator_(?!pro_)'"
        );

        foreach ($dupOptionTransientNames as $dupOptionTransientName) {
            delete_transient(str_replace("_transient_", "", $dupOptionTransientName));
        }
    }
}

DuplicatorLiteUninstall::uninstall();

Youez - 2016 - github.com/yon3zu
LinuXploit