X7ROOT File Manager
Current Path:
/home/katmhsmi/public_html/wp-content/plugins/duplicator-pro/classes
home
/
katmhsmi
/
public_html
/
wp-content
/
plugins
/
duplicator-pro
/
classes
/
📁
..
📄
.htaccess
(420 B)
📄
class.archive.config.php
(1.74 KB)
📄
class.constants.php
(9.45 KB)
📄
class.db.php
(15.75 KB)
📄
class.exceptions.php
(300 B)
📄
class.io.php
(1.51 KB)
📄
class.logging.php
(54.61 KB)
📄
class.package.pagination.php
(602 B)
📄
class.php.log.php
(13.08 KB)
📄
class.phpseclib.php
(5.42 KB)
📄
class.plugin.upgrade.php
(3.61 KB)
📄
class.scan.check.php
(5.36 KB)
📄
class.server.php
(21.48 KB)
📄
class.system.checker.php
(2.05 KB)
📄
class.wp.list.table.php
(43.87 KB)
📁
entities
📁
environment
📁
host
📄
index.php
(16 B)
📁
net
📁
package
📁
storage
📁
ui
📁
utilities
Editing: class.plugin.upgrade.php
<?php use Duplicator\Libs\Snap\SnapWP; use Duplicator\Utils\Crypt\CryptBlowfish; use Duplicator\Addons\ProBase\License\License; defined('ABSPATH') || defined('DUPXABSPATH') || exit; /** * Upgrade logic of plugin resides here */ class DUP_PRO_Plugin_Upgrade { const DUP_VERSION_OPT_KEY = 'duplicator_pro_plugin_version'; public static function onActivationAction() { if (($oldDupVersion = get_option(self::DUP_VERSION_OPT_KEY, false)) === false) { self::newInstallation(); } else { self::updateInstallation($oldDupVersion); } //Rename installer files if exists DUP_PRO_Migration::renameInstallersPhpFiles(); } protected static function newInstallation() { self::environmentChecks(); self::updateDatabase(); DUP_PRO_Upgrade_U::performUpgrade(false, DUPLICATOR_PRO_VERSION); //WordPress Options Hooks self::updateOptionVersion(); } protected static function updateInstallation($oldVersion) { self::environmentChecks(); self::updateDatabase(); DUP_PRO_Upgrade_U::performUpgrade($oldVersion, DUPLICATOR_PRO_VERSION); //WordPress Options Hooks self::updateOptionVersion(); } protected static function updateOptionVersion() { //WordPress Options Hooks if (update_option(self::DUP_VERSION_OPT_KEY, DUPLICATOR_PRO_VERSION, true) === false) { DUP_PRO_Log::trace("Couldn't update duplicator_pro_plugin_version so deleting it."); delete_option(self::DUP_VERSION_OPT_KEY); if (update_option(self::DUP_VERSION_OPT_KEY, DUPLICATOR_PRO_VERSION, true) === false) { DUP_PRO_Log::trace("Still couldn\'t update the option!"); } else { DUP_PRO_Log::trace("Option updated."); } } } public static function updateDatabase() { global $wpdb; $charset_collate = $wpdb->get_charset_collate(); $table_name = $wpdb->base_prefix . "duplicator_pro_packages"; //PRIMARY KEY must have 2 spaces before for dbDelta to work $sql = "CREATE TABLE `{$table_name}` ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, name VARCHAR(250) NOT NULL, hash VARCHAR(50) NOT NULL, status INT(11) NOT NULL, created DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', owner VARCHAR(60) NOT NULL, package LONGTEXT NOT NULL, PRIMARY KEY (id), KEY hash (hash)) $charset_collate;"; require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); SnapWP::dbDelta($sql); DUP_PRO_JSON_Entity_Base::init_table(); DUP_PRO_Global_Entity::initialize_plugin_data(); DUP_PRO_Secure_Global_Entity::initialize_plugin_data(); DUP_PRO_System_Global_Entity::initialize_plugin_data(); DUP_PRO_Package_Template_Entity::create_default(); DUP_PRO_Package_Template_Entity::create_manual(); } protected static function environmentChecks() { require_once(DUPLICATOR____PATH . '/classes/environment/class.environment.checker.php'); $env_checker = new DUP_PRO_Environment_Checker(); $status = $env_checker->check(); $messages = $env_checker->getHelperMessages(); if (!$status) { if (!empty($messages)) { $msg_str = ''; foreach ($messages as $id => $msgs) { foreach ($msgs as $key => $msg) { $msg_str .= '<br/>' . $msg; } } die($msg_str); } } } }
Upload File
Create Folder