PATH:
home
/
shotlining
/
public_html
/
wp-content
/
plugins
/
all-in-one-wp-migration
/
lib
/
model
/
import
<?php /** * Copyright (C) 2014-2025 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/>. * * Attribution: This code is part of the All-in-One WP Migration plugin, developed by * * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗ * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝ * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝ * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗ * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗ * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝ */ if ( ! defined( 'ABSPATH' ) ) { die( 'Kangaroos cannot jump here' ); } class Ai1wm_Import_Clean { public static function execute( $params ) { // Get database client $db_client = Ai1wm_Database_Utility::get_client(); // Flush mainsite tables $db_client->add_table_prefix_filter( ai1wm_table_prefix( 'mainsite' ) ); $db_client->flush(); // Trigger import cancel action if ( isset( $params['ai1wm_import_cancel'] ) ) { do_action( 'ai1wm_status_import_canceled', $params ); } else { do_action( 'ai1wm_status_import_done', $params ); } // Delete storage files Ai1wm_Directory::delete( ai1wm_storage_path( $params ) ); // Exit in console if ( defined( 'WP_CLI' ) ) { return $params; } exit; } }
[-] class-ai1wm-import-confirm.php
[edit]
[-] class-ai1wm-import-database-file.php
[edit]
[-] class-ai1wm-import-blogs.php
[edit]
[-] class-ai1wm-import-validate-crc.php
[edit]
[+]
..
[-] class-ai1wm-import-check-compression.php
[edit]
[-] class-ai1wm-import-users.php
[edit]
[-] class-ai1wm-import-mu-plugins.php
[edit]
[-] class-ai1wm-import-upload.php
[edit]
[-] class-ai1wm-import-clean.php
[edit]
[-] class-ai1wm-import-done.php
[edit]
[-] class-ai1wm-import-compatibility.php
[edit]
[-] class-ai1wm-import-options.php
[edit]
[-] class-ai1wm-import-database.php
[edit]
[-] class-ai1wm-import-check-encryption.php
[edit]
[-] class-ai1wm-import-validate.php
[edit]
[-] class-ai1wm-import-content.php
[edit]
[-] class-ai1wm-import-enumerate.php
[edit]
[-] class-ai1wm-import-permalinks.php
[edit]