PATH:
home
/
lab2454c
/
biocei.com
/
wp-content
/
plugins
/
all-in-one-wp-migration
/
lib
/
model
/
import
<?php /** * Copyright (C) 2014-2020 ServMask Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗ * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝ * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝ * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗ * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗ * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝ */ if ( ! defined( 'ABSPATH' ) ) { die( 'Kangaroos cannot jump here' ); } class Ai1wm_Import_Confirm { public static function execute( $params ) { $messages = array(); // Read package.json file $handle = ai1wm_open( ai1wm_package_path( $params ), 'r' ); // Parse package.json file $package = ai1wm_read( $handle, filesize( ai1wm_package_path( $params ) ) ); $package = json_decode( $package, true ); // Close handle ai1wm_close( $handle ); // Confirm message if ( defined( 'WP_CLI' ) ) { $messages[] = __( 'The import process will overwrite your website including the database, media, plugins, and themes. ' . 'Are you sure to proceed?', AI1WM_PLUGIN_NAME ); } else { $messages[] = __( 'The import process will overwrite your website including the database, media, plugins, and themes. ' . 'Please ensure that you have a backup of your data before proceeding to the next step.', AI1WM_PLUGIN_NAME ); } // Check compatibility of PHP versions if ( isset( $package['PHP']['Version'] ) ) { switch ( true ) { case ( version_compare( $package['PHP']['Version'], '7.0.0', '<' ) && version_compare( PHP_VERSION, '8.0.0', '>=' ) ): $php_version_message_cli = __( 'Your backup is from a PHP 5 but the site that you are importing to is PHP 8. ' . 'This could cause the import to fail. Technical details: https://help.servmask.com/knowledgebase/migrate-wordpress-from-php-5-to-php-7/', AI1WM_PLUGIN_NAME ); $php_version_message = __( '<i class="ai1wm-import-info">Your backup is from a PHP 5 but the site that you are importing to is PHP 8. ' . 'This could cause the import to fail. <a href="https://help.servmask.com/knowledgebase/migrate-wordpress-from-php-5-to-php-7/" target="_blank">Technical details</a></i>', AI1WM_PLUGIN_NAME ); break; case ( version_compare( $package['PHP']['Version'], '8.0.0', '<' ) && version_compare( PHP_VERSION, '8.0.0', '>=' ) ): $php_version_message_cli = __( 'Your backup is from a PHP 7 but the site that you are importing to is PHP 8. ' . 'This could cause the import to fail. Technical details: https://help.servmask.com/knowledgebase/migrate-wordpress-from-php-5-to-php-7/', AI1WM_PLUGIN_NAME ); $php_version_message = __( '<i class="ai1wm-import-info">Your backup is from a PHP 7 but the site that you are importing to is PHP 8. ' . 'This could cause the import to fail. <a href="https://help.servmask.com/knowledgebase/migrate-wordpress-from-php-5-to-php-7/" target="_blank">Technical details</a></i>', AI1WM_PLUGIN_NAME ); break; case ( version_compare( $package['PHP']['Version'], '7.0.0', '<' ) && version_compare( PHP_VERSION, '7.0.0', '>=' ) ): $php_version_message_cli = __( 'Your backup is from a PHP 5 but the site that you are importing to is PHP 7. ' . 'This could cause the import to fail. Technical details: https://help.servmask.com/knowledgebase/migrate-wordpress-from-php-5-to-php-7/', AI1WM_PLUGIN_NAME ); $php_version_message = __( '<i class="ai1wm-import-info">Your backup is from a PHP 5 but the site that you are importing to is PHP 7. ' . 'This could cause the import to fail. <a href="https://help.servmask.com/knowledgebase/migrate-wordpress-from-php-5-to-php-7/" target="_blank">Technical details</a></i>', AI1WM_PLUGIN_NAME ); break; default: } if ( isset( $php_version_message_cli, $php_version_message ) ) { if ( defined( 'WP_CLI' ) ) { $messages[] = $php_version_message_cli; } else { $messages[] = $php_version_message; } } } if ( defined( 'WP_CLI' ) ) { $assoc_args = array(); if ( isset( $params['cli_args'] ) ) { $assoc_args = $params['cli_args']; } WP_CLI::confirm( implode( $messages ), $assoc_args ); return $params; } // Set progress Ai1wm_Status::confirm( implode( $messages ) ); exit; } }
[-] class-ai1wm-import-confirm.php
[edit]
[-] class-ai1wm-import-mu-plugins.php
[edit]
[-] class-ai1wm-import-enumerate.php
[edit]
[-] class-ai1wm-import-content.php
[edit]
[-] class-ai1wm-import-compatibility.php
[edit]
[+]
..
[-] class-ai1wm-import-upload.php
[edit]
[-] class-ai1wm-import-options.php
[edit]
[-] class-ai1wm-import-database.php
[edit]
[-] class-ai1wm-import-done.php
[edit]
[-] class-ai1wm-import-users.php
[edit]
[-] class-ai1wm-import-clean.php
[edit]
[-] class-ai1wm-import-blogs.php
[edit]
[-] class-ai1wm-import-permalinks.php
[edit]
[-] class-ai1wm-import-validate.php
[edit]
[-] class-ai1wm-import-check-decryption-password.php
[edit]
[-] class-ai1wm-import-check-encryption.php
[edit]