PATH:
home
/
lab2454c
/
credityork.com
/
wp-content
/
plugins
/
all-in-one-wp-migration-master
/
lib
/
model
/
import
<?php /** * Copyright (C) 2014-2018 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/>. * * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗ * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝ * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝ * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗ * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗ * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝ */ class Ai1wm_Import_Done { public static function execute( $params ) { // Check multisite.json file if ( true === is_file( ai1wm_multisite_path( $params ) ) ) { // Read multisite.json file $handle = ai1wm_open( ai1wm_multisite_path( $params ), 'r' ); // Parse multisite.json file $multisite = ai1wm_read( $handle, filesize( ai1wm_multisite_path( $params ) ) ); $multisite = json_decode( $multisite, true ); // Close handle ai1wm_close( $handle ); // Activate WordPress plugins if ( isset( $multisite['Plugins'] ) && ( $plugins = $multisite['Plugins'] ) ) { ai1wm_activate_plugins( $plugins ); } // Deactivate WordPress SSL plugins if ( ! is_ssl() ) { ai1wm_deactivate_plugins( array( ai1wm_discover_plugin_basename( 'really-simple-ssl/rlrsssl-really-simple-ssl.php' ), ai1wm_discover_plugin_basename( 'wordpress-https/wordpress-https.php' ), ai1wm_discover_plugin_basename( 'wp-force-ssl/wp-force-ssl.php' ), ) ); } // Deactivate WordPress plugins ai1wm_deactivate_plugins( array( ai1wm_discover_plugin_basename( 'invisible-recaptcha/invisible-recaptcha.php' ), ai1wm_discover_plugin_basename( 'wps-hide-login/wps-hide-login.php' ), ai1wm_discover_plugin_basename( 'hide-my-wp/index.php' ), ai1wm_discover_plugin_basename( 'hide-my-wordpress/index.php' ), ai1wm_discover_plugin_basename( 'mycustomwidget/my_custom_widget.php' ), ai1wm_discover_plugin_basename( 'lockdown-wp-admin/lockdown-wp-admin.php' ), ai1wm_discover_plugin_basename( 'rename-wp-login/rename-wp-login.php' ), ) ); // Deactivate Jetpack modules ai1wm_deactivate_jetpack_modules( array( 'photon', 'sso', ) ); } else { // Check package.json file if ( true === is_file( ai1wm_package_path( $params ) ) ) { // 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 ); // Activate WordPress plugins if ( isset( $package['Plugins'] ) && ( $plugins = $package['Plugins'] ) ) { ai1wm_activate_plugins( $plugins ); } // Activate WordPress template if ( isset( $package['Template'] ) && ( $template = $package['Template'] ) ) { ai1wm_activate_template( $template ); } // Activate WordPress stylesheet if ( isset( $package['Stylesheet'] ) && ( $stylesheet = $package['Stylesheet'] ) ) { ai1wm_activate_stylesheet( $stylesheet ); } // Deactivate WordPress SSL plugins if ( ! is_ssl() ) { ai1wm_deactivate_plugins( array( ai1wm_discover_plugin_basename( 'really-simple-ssl/rlrsssl-really-simple-ssl.php' ), ai1wm_discover_plugin_basename( 'wordpress-https/wordpress-https.php' ), ai1wm_discover_plugin_basename( 'wp-force-ssl/wp-force-ssl.php' ), ) ); } // Deactivate WordPress plugins ai1wm_deactivate_plugins( array( ai1wm_discover_plugin_basename( 'invisible-recaptcha/invisible-recaptcha.php' ), ai1wm_discover_plugin_basename( 'wps-hide-login/wps-hide-login.php' ), ai1wm_discover_plugin_basename( 'hide-my-wp/index.php' ), ai1wm_discover_plugin_basename( 'hide-my-wordpress/index.php' ), ai1wm_discover_plugin_basename( 'mycustomwidget/my_custom_widget.php' ), ai1wm_discover_plugin_basename( 'lockdown-wp-admin/lockdown-wp-admin.php' ), ai1wm_discover_plugin_basename( 'rename-wp-login/rename-wp-login.php' ), ) ); // Deactivate Jetpack modules ai1wm_deactivate_jetpack_modules( array( 'photon', 'sso', ) ); } } // Check blogs.json file if ( true === is_file( ai1wm_blogs_path( $params ) ) ) { // Read blogs.json file $handle = ai1wm_open( ai1wm_blogs_path( $params ), 'r' ); // Parse blogs.json file $blogs = ai1wm_read( $handle, filesize( ai1wm_blogs_path( $params ) ) ); $blogs = json_decode( $blogs, true ); // Close handle ai1wm_close( $handle ); // Loop over blogs foreach ( $blogs as $blog ) { // Activate WordPress plugins if ( isset( $blog['New']['Plugins'] ) && ( $plugins = $blog['New']['Plugins'] ) ) { ai1wm_activate_plugins( $plugins ); } // Activate WordPress template if ( isset( $blog['New']['Template'] ) && ( $template = $blog['New']['Template'] ) ) { ai1wm_activate_template( $template ); } // Activate WordPress stylesheet if ( isset( $blog['New']['Stylesheet'] ) && ( $stylesheet = $blog['New']['Stylesheet'] ) ) { ai1wm_activate_stylesheet( $stylesheet ); } // Deactivate WordPress SSL plugins if ( ! is_ssl() ) { ai1wm_deactivate_plugins( array( ai1wm_discover_plugin_basename( 'really-simple-ssl/rlrsssl-really-simple-ssl.php' ), ai1wm_discover_plugin_basename( 'wordpress-https/wordpress-https.php' ), ai1wm_discover_plugin_basename( 'wp-force-ssl/wp-force-ssl.php' ), ) ); } // Deactivate WordPress plugins ai1wm_deactivate_plugins( array( ai1wm_discover_plugin_basename( 'invisible-recaptcha/invisible-recaptcha.php' ), ai1wm_discover_plugin_basename( 'wps-hide-login/wps-hide-login.php' ), ai1wm_discover_plugin_basename( 'hide-my-wp/index.php' ), ai1wm_discover_plugin_basename( 'hide-my-wordpress/index.php' ), ai1wm_discover_plugin_basename( 'mycustomwidget/my_custom_widget.php' ), ai1wm_discover_plugin_basename( 'lockdown-wp-admin/lockdown-wp-admin.php' ), ai1wm_discover_plugin_basename( 'rename-wp-login/rename-wp-login.php' ), ) ); // Deactivate Jetpack modules ai1wm_deactivate_jetpack_modules( array( 'photon', 'sso', ) ); } } // Set progress Ai1wm_Status::done( __( 'Your data has been imported successfully!', AI1WM_PLUGIN_NAME ), sprintf( __( 'You need to perform two more steps:<br />' . '<strong>1. You must save your permalinks structure twice. <a class="ai1wm-no-underline" href="%s" target="_blank">Permalinks Settings</a></strong> <small>(opens a new window)</small><br />' . '<strong>2. <a class="ai1wm-no-underline" href="https://wordpress.org/support/view/plugin-reviews/all-in-one-wp-migration?rate=5#postform" target="_blank">Optionally, review the plugin</a>.</strong> <small>(opens a new window)</small>', AI1WM_PLUGIN_NAME ), admin_url( 'options-permalink.php#submit' ) ) ); return $params; } }
[-] 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-database.php
[edit]
[-] class-ai1wm-import-done.php
[edit]
[-] class-ai1wm-import-clean.php
[edit]
[-] class-ai1wm-import-blogs.php
[edit]
[-] class-ai1wm-import-validate.php
[edit]