Plugin Directory

Changeset 3253940


Ignore:
Timestamp:
03/11/2025 10:23:20 AM (13 months ago)
Author:
bangelov
Message:

Adding v7.90 to trunk

Location:
all-in-one-wp-migration/trunk
Files:
1 added
161 edited

Legend:

Unmodified
Added
Removed
  • all-in-one-wp-migration/trunk/all-in-one-wp-migration.php

    r3234191 r3253940  
    66 * Author: ServMask
    77 * Author URI: https://servmask.com/
    8  * Version: 7.89
     8 * Version: 7.90
    99 * Text Domain: all-in-one-wp-migration
    1010 * Domain Path: /languages
    1111 * Network: True
     12 * License: GPLv3
    1213 *
    13  * Copyright (C) 2014-2023 ServMask Inc.
     14 * Copyright (C) 2014-2025 ServMask Inc.
    1415 *
    1516 * This program is free software: you can redistribute it and/or modify
     
    2526 * You should have received a copy of the GNU General Public License
    2627 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     28 *
     29 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    2730 *
    2831 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/constants.php

    r3234191 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
    1717 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
     19 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
    1921 * ██╔════╝██╔════╝██╔══██╗██║   ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
     
    3638// = Plugin Version =
    3739// ==================
    38 define( 'AI1WM_VERSION', '7.89' );
     40define( 'AI1WM_VERSION', '7.90' );
    3941
    4042// ===============
  • all-in-one-wp-migration/trunk/deprecated.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
    1717 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
     19 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
    1921 * ██╔════╝██╔════╝██╔══██╗██║   ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
  • all-in-one-wp-migration/trunk/exceptions.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/functions.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
     
    15781580 * Write fields to a file
    15791581 *
    1580  * @param  resource $handle File handle to write to
    1581  * @param  array    $fields Fields to write to the file
     1582 * @param resource  $handle File handle to write to
     1583 * @param array     $fields Fields to write to the file
     1584 * @param string    $separator
     1585 * @param string    $enclosure
     1586 * @param string    $escape
     1587 *
    15821588 * @return integer
    15831589 * @throws Ai1wm_Not_Writable_Exception
    15841590 */
    1585 function ai1wm_putcsv( $handle, $fields ) {
    1586     $write_result = @fputcsv( $handle, $fields );
     1591function ai1wm_putcsv( $handle, $fields, $separator = ',', $enclosure = '"', $escape = '\\' ) {
     1592    if ( PHP_MAJOR_VERSION >= 7 ) {
     1593        $write_result = @fputcsv( $handle, $fields, $separator, $enclosure, $escape );
     1594    } else {
     1595        $write_result = @fputcsv( $handle, $fields, $separator, $enclosure );
     1596    }
     1597
    15871598    if ( false === $write_result ) {
    15881599        if ( ( $meta = stream_get_meta_data( $handle ) ) ) {
     
    15921603
    15931604    return $write_result;
     1605}
     1606
     1607/**
     1608 * Read fields from a file
     1609 *
     1610 * @param resource  $handle File handle to read from
     1611 * @param int       $length
     1612 * @param string    $separator
     1613 * @param string    $enclosure
     1614 * @param string    $escape
     1615 *
     1616 * @return array|false|null
     1617 */
     1618function ai1wm_getcsv( $handle, $length = null, $separator = ',', $enclosure = '"', $escape = '\\' ) {
     1619    return fgetcsv( $handle, $length, $separator, $enclosure, $escape );
    15941620}
    15951621
  • all-in-one-wp-migration/trunk/lib/controller/class-ai1wm-backups-controller.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/controller/class-ai1wm-export-controller.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/controller/class-ai1wm-feedback-controller.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/controller/class-ai1wm-import-controller.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/controller/class-ai1wm-main-controller.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/controller/class-ai1wm-reset-controller.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/controller/class-ai1wm-schedules-controller.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/controller/class-ai1wm-status-controller.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/controller/class-ai1wm-updater-controller.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/class-ai1wm-backups.php

    r3112499 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/class-ai1wm-compatibility.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/class-ai1wm-deprecated.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/class-ai1wm-extensions.php

    r3234191 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/class-ai1wm-feedback.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/class-ai1wm-handler.php

    r3168605 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/class-ai1wm-log.php

    r3168605 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/class-ai1wm-message.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/class-ai1wm-notification.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/class-ai1wm-status.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/class-ai1wm-template.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/class-ai1wm-updater.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/export/class-ai1wm-export-archive.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/export/class-ai1wm-export-clean.php

    r3112499 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/export/class-ai1wm-export-compatibility.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/export/class-ai1wm-export-config-file.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/export/class-ai1wm-export-config.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/export/class-ai1wm-export-content.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
     
    99101
    100102            // Loop over files
    101             while ( list( $file_abspath, $file_relpath, $file_size, $file_mtime ) = fgetcsv( $content_list ) ) {
     103            while ( list( $file_abspath, $file_relpath, $file_size, $file_mtime ) = ai1wm_getcsv( $content_list ) ) {
    102104                $file_bytes_written = 0;
    103105
  • all-in-one-wp-migration/trunk/lib/model/export/class-ai1wm-export-database-file.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/export/class-ai1wm-export-database.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
     
    8284        // Loop over tables
    8385        $tables = array();
    84         while ( list( $table_name ) = fgetcsv( $tables_list ) ) {
     86        while ( list( $table_name ) = ai1wm_getcsv( $tables_list ) ) {
    8587            $tables[] = $table_name;
    8688        }
     
    135137
    136138        // Exclude column prefixes
    137         $db_client->set_reserved_column_prefixes( array( 'wp_force_deactivated_plugins', 'wp_page_for_privacy_policy' ) );
     139        $db_client->set_reserved_column_prefixes( array( 'wp_force_deactivated_plugins', 'wp_page_for_privacy_policy', 'wp_rocket_settings', 'wp_rocket_dismiss_imagify_notice', 'wp_rocket_no_licence', 'wp_rocket_rocketcdn_old_url', 'wp_rocket_hide_deactivation_form' ) );
    138140
    139141        // Exclude site options
  • all-in-one-wp-migration/trunk/lib/model/export/class-ai1wm-export-download.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/export/class-ai1wm-export-enumerate-content.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/export/class-ai1wm-export-enumerate-media.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/export/class-ai1wm-export-enumerate-plugins.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/export/class-ai1wm-export-enumerate-tables.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/export/class-ai1wm-export-enumerate-themes.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/export/class-ai1wm-export-init.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/export/class-ai1wm-export-media.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
     
    99101
    100102            // Loop over files
    101             while ( list( $file_abspath, $file_relpath, $file_size, $file_mtime ) = fgetcsv( $media_list ) ) {
     103            while ( list( $file_abspath, $file_relpath, $file_size, $file_mtime ) = ai1wm_getcsv( $media_list ) ) {
    102104                $file_bytes_written = 0;
    103105
  • all-in-one-wp-migration/trunk/lib/model/export/class-ai1wm-export-plugins.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
     
    99101
    100102            // Loop over files
    101             while ( list( $file_abspath, $file_relpath, $file_size, $file_mtime ) = fgetcsv( $plugins_list ) ) {
     103            while ( list( $file_abspath, $file_relpath, $file_size, $file_mtime ) = ai1wm_getcsv( $plugins_list ) ) {
    102104                $file_bytes_written = 0;
    103105
  • all-in-one-wp-migration/trunk/lib/model/export/class-ai1wm-export-themes.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
     
    99101
    100102            // Loop over files
    101             while ( list( $file_abspath, $file_relpath, $file_size, $file_mtime ) = fgetcsv( $themes_list ) ) {
     103            while ( list( $file_abspath, $file_relpath, $file_size, $file_mtime ) = ai1wm_getcsv( $themes_list ) ) {
    102104                $file_bytes_written = 0;
    103105
  • all-in-one-wp-migration/trunk/lib/model/import/class-ai1wm-import-blogs.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/import/class-ai1wm-import-check-decryption-password.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/import/class-ai1wm-import-check-encryption.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/import/class-ai1wm-import-clean.php

    r3112499 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/import/class-ai1wm-import-compatibility.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/import/class-ai1wm-import-confirm.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/import/class-ai1wm-import-content.php

    r3089446 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/import/class-ai1wm-import-database.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
    1717 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
     19 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
    1921 * ██╔════╝██╔════╝██╔══██╗██║   ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
  • all-in-one-wp-migration/trunk/lib/model/import/class-ai1wm-import-done.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/import/class-ai1wm-import-enumerate.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/import/class-ai1wm-import-mu-plugins.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/import/class-ai1wm-import-options.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/import/class-ai1wm-import-permalinks.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/import/class-ai1wm-import-upload.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/import/class-ai1wm-import-users.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/model/import/class-ai1wm-import-validate.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/archiver/class-ai1wm-archiver.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/archiver/class-ai1wm-compressor.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/archiver/class-ai1wm-extractor.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
    1717 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
     19 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
    1921 * ██╔════╝██╔════╝██╔══██╗██║   ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/command/class-ai1wm-wp-cli-command.php

    r3099274 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
     19 *
     20 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
     21 * ██╔════╝██╔════╝██╔══██╗██║   ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
     22 * ███████╗█████╗  ██████╔╝██║   ██║██╔████╔██║███████║███████╗█████╔╝
     23 * ╚════██║██╔══╝  ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
     24 * ███████║███████╗██║  ██║ ╚████╔╝ ██║ ╚═╝ ██║██║  ██║███████║██║  ██╗
     25 * ╚══════╝╚══════╝╚═╝  ╚═╝  ╚═══╝  ╚═╝     ╚═╝╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝
    1726 */
    1827
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/cron/class-ai1wm-cron.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/database/class-ai1wm-database-mysql.php

    r3089446 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/database/class-ai1wm-database-mysqli.php

    r3089446 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
     
    5961        }
    6062
    61         // Copy results from the internal mysqlnd buffer into the PHP variables fetched
    62         if ( defined( 'MYSQLI_STORE_RESULT_COPY_DATA' ) ) {
    63             return mysqli_store_result( $this->wpdb->dbh, MYSQLI_STORE_RESULT_COPY_DATA );
     63        // The parameter $mode has had no effect as of PHP 8.1.0.
     64        if ( ( PHP_MAJOR_VERSION >= 8 && PHP_MINOR_VERSION >= 1 ) || ! defined( 'MYSQLI_STORE_RESULT_COPY_DATA' ) ) {
     65            return mysqli_store_result( $this->wpdb->dbh );
    6466        }
    6567
    66         return mysqli_store_result( $this->wpdb->dbh );
     68        // Copy results from the internal mysqlnd buffer into the PHP variables fetched
     69        return mysqli_store_result( $this->wpdb->dbh, MYSQLI_STORE_RESULT_COPY_DATA );
    6770    }
    6871
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/database/class-ai1wm-database-sqlite.php

    r3089446 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
     
    113115     */
    114116    public function query( $input ) {
    115         return $this->wpdb->dbh->query( $input );
     117        return $this->wpdb->get_results( $input, ARRAY_A );
    116118    }
    117119
     
    166168        next( $result );
    167169
    168         return get_object_vars( $current );
     170        return $current;
    169171    }
    170172
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/database/class-ai1wm-database-utility.php

    r3134502 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
     
    4850        }
    4951
    50         if ( $wpdb instanceof WP_SQLite_DB ) {
     52        if ( $wpdb instanceof WP_SQLite_DB || $wpdb instanceof WP_SQLite_DB\wpsqlitedb ) {
    5153            return new Ai1wm_Database_Sqlite( $wpdb );
    5254        }
     
    6769     * This function is case-sensitive.
    6870     *
    69      * @param  array  $from List of string we're looking to replace.
    70      * @param  array  $to   What we want it to be replaced with.
    71      * @param  string $data Data to replace.
    72      * @return mixed        The original string with all elements replaced as needed.
    73      */
    74     public static function replace_values( $from = array(), $to = array(), $data = '' ) {
    75         if ( ! empty( $from ) && ! empty( $to ) ) {
    76             return strtr( $data, array_combine( $from, $to ) );
    77         }
    78 
    79         return $data;
    80     }
    81 
    82     /**
    83      * Take a serialized array and unserialize it replacing elements as needed and
    84      * unserializing any subordinate arrays and performing the replace on those too.
     71     * @param  string $data    Data to replace
     72     * @param  array  $search  List of string we're looking to replace
     73     * @param  array  $replace What we want it to be replaced with
     74     * @return string          The original string with all elements replaced as needed
     75     */
     76    public static function replace_values( $data, $search = array(), $replace = array() ) {
     77        return strtr( $data, array_combine( $search, $replace ) );
     78    }
     79
     80    /**
     81     * Replace serialized occurrences of the search string with the replacement string.
    8582     * This function is case-sensitive.
    8683     *
    87      * @param  array $from       List of string we're looking to replace.
    88      * @param  array $to         What we want it to be replaced with.
    89      * @param  mixed $data       Used to pass any subordinate arrays back to in.
    90      * @param  bool  $serialized Does the array passed via $data need serializing.
    91      * @return mixed             The original array with all elements replaced as needed.
    92      */
    93     public static function replace_serialized_values( $from = array(), $to = array(), $data = '', $serialized = false ) {
    94         try {
    95 
    96             // Some unserialized data cannot be re-serialized eg. SimpleXMLElements
    97             if ( is_serialized( $data ) && ( $unserialized = @unserialize( $data ) ) !== false ) {
    98                 $data = self::replace_serialized_values( $from, $to, $unserialized, true );
    99             } elseif ( is_array( $data ) ) {
    100                 $tmp = array();
    101                 foreach ( $data as $key => $value ) {
    102                     $tmp[ $key ] = self::replace_serialized_values( $from, $to, $value, false );
    103                 }
    104 
    105                 $data = $tmp;
    106                 unset( $tmp );
    107             } elseif ( is_object( $data ) ) {
    108                 if ( ! ( $data instanceof __PHP_Incomplete_Class ) ) {
    109                     $tmp   = $data;
    110                     $props = get_object_vars( $data );
    111                     foreach ( $props as $key => $value ) {
    112                         if ( ! empty( $tmp->$key ) ) {
    113                             $tmp->$key = self::replace_serialized_values( $from, $to, $value, false );
    114                         }
     84     * @param  string $data    Data to replace
     85     * @param  array  $search  List of string we're looking to replace
     86     * @param  array  $replace What we want it to be replaced with
     87     * @return string          The original array with all elements replaced as needed
     88     */
     89    public static function replace_serialized_values( $data, $search = array(), $replace = array() ) {
     90        $pos = 0;
     91
     92        $result = self::parse_serialized_values( $data, $pos, $search, $replace );
     93        if ( $pos !== strlen( $data ) ) {
     94            // Failed to parse entire data
     95            return strtr( $data, array_combine( $search, $replace ) );
     96        }
     97
     98        return $result;
     99    }
     100
     101    /**
     102     * Parse serialized string and replace needed substitutions.
     103     * This function is case-sensitive.
     104     *
     105     * @param  string  $data    Serialized data
     106     * @param  integer $pos     Character position
     107     * @param  array   $search  List of string we're looking to replace
     108     * @param  array   $replace What we want it to be replaced with
     109     * @return string           The original string with all elements replaced as needed
     110     */
     111    public static function parse_serialized_values( $data, &$pos, $search = array(), $replace = array() ) {
     112        $length = strlen( $data );
     113        if ( $pos >= $length ) {
     114            return '';
     115        }
     116
     117        $type = $data[ $pos ];
     118        $pos++;
     119
     120        switch ( $type ) {
     121            case 's':
     122                if ( $data[ $pos ] !== ':' ) {
     123                    return '';
     124                }
     125
     126                $pos++;
     127                $len_end = strpos( $data, ':', $pos );
     128                if ( $len_end === false ) {
     129                    return '';
     130                }
     131
     132                $str_length = (int) substr( $data, $pos, $len_end - $pos );
     133
     134                $pos = $len_end + 1;
     135                if ( $data[ $pos ] !== '"' ) {
     136                    return '';
     137                }
     138
     139                $pos++;
     140                $str = substr( $data, $pos, $str_length );
     141
     142                $pos += $str_length;
     143                if ( $data[ $pos ] !== '"' ) {
     144                    return '';
     145                }
     146
     147                $pos++;
     148                if ( $data[ $pos ] !== ';' ) {
     149                    return '';
     150                }
     151
     152                $pos++;
     153
     154                // If the string is a single letter, skip any parsing or replacement.
     155                if ( $str_length === 1 ) {
     156                    return 's:' . $str_length . ':"' . $str . '";';
     157                }
     158
     159                // Attempt to parse the string as serialized data
     160                $pos_inner  = 0;
     161                $parsed_str = self::parse_serialized_values( $str, $pos_inner, $search, $replace );
     162                if ( $pos_inner === strlen( $str ) ) {
     163                    // The string is serialized data, use the parsed string
     164                    $new_str = $parsed_str;
     165                } else {
     166                    // Regular string, perform replacement
     167                    $new_str = strtr( $str, array_combine( $search, $replace ) );
     168                }
     169
     170                return 's:' . strlen( $new_str ) . ':"' . $new_str . '";';
     171
     172            case 'i':
     173            case 'd':
     174            case 'b':
     175                if ( $data[ $pos ] !== ':' ) {
     176                    return '';
     177                }
     178
     179                $pos++;
     180                $end = strpos( $data, ';', $pos );
     181                if ( $end === false ) {
     182                    return '';
     183                }
     184
     185                $value = substr( $data, $pos, $end - $pos );
     186                $pos   = $end + 1;
     187
     188                return $type . ':' . $value . ';';
     189
     190            case 'N':
     191                if ( $data[ $pos ] !== ';' ) {
     192                    return '';
     193                }
     194
     195                $pos++;
     196
     197                return 'N;';
     198
     199            case 'a':
     200                if ( $data[ $pos ] !== ':' ) {
     201                    return '';
     202                }
     203
     204                $pos++;
     205                $len_end = strpos( $data, ':', $pos );
     206                if ( $len_end === false ) {
     207                    return '';
     208                }
     209
     210                $array_length = (int) substr( $data, $pos, $len_end - $pos );
     211
     212                $pos = $len_end + 1;
     213                if ( $data[ $pos ] !== '{' ) {
     214                    return '';
     215                }
     216
     217                $pos++;
     218                $result = 'a:' . $array_length . ':{';
     219                for ( $i = 0; $i < $array_length * 2; $i++ ) {
     220                    $element = self::parse_serialized_values( $data, $pos, $search, $replace );
     221                    if ( $element === '' ) {
     222                        return '';
    115223                    }
    116224
    117                     $data = $tmp;
    118                     unset( $tmp );
    119                 }
    120             } else {
    121                 if ( is_string( $data ) ) {
    122                     if ( ! empty( $from ) && ! empty( $to ) ) {
    123                         $data = strtr( $data, array_combine( $from, $to ) );
     225                    $result .= $element;
     226                }
     227
     228                if ( $data[ $pos ] !== '}' ) {
     229                    return '';
     230                }
     231
     232                $pos++;
     233                $result .= '}';
     234
     235                return $result;
     236
     237            case 'O':
     238                if ( $data[ $pos ] !== ':' ) {
     239                    return '';
     240                }
     241
     242                $pos++;
     243                $class_len_end = strpos( $data, ':', $pos );
     244                if ( $class_len_end === false ) {
     245                    return '';
     246                }
     247
     248                $class_length = (int) substr( $data, $pos, $class_len_end - $pos );
     249
     250                $pos = $class_len_end + 1;
     251                if ( $data[ $pos ] !== '"' ) {
     252                    return '';
     253                }
     254
     255                $pos++;
     256                $class_name = substr( $data, $pos, $class_length );
     257
     258                $pos += $class_length;
     259                if ( $data[ $pos ] !== '"' ) {
     260                    return '';
     261                }
     262
     263                $pos++;
     264                if ( $data[ $pos ] !== ':' ) {
     265                    return '';
     266                }
     267
     268                $pos++;
     269                $prop_len_end = strpos( $data, ':', $pos );
     270                if ( $prop_len_end === false ) {
     271                    return '';
     272                }
     273
     274                $prop_count = (int) substr( $data, $pos, $prop_len_end - $pos );
     275
     276                $pos = $prop_len_end + 1;
     277                if ( $data[ $pos ] !== '{' ) {
     278                    return '';
     279                }
     280
     281                $pos++;
     282                $result = 'O:' . strlen( $class_name ) . ':"' . $class_name . '":' . $prop_count . ':{';
     283                for ( $i = 0; $i < $prop_count * 2; $i++ ) {
     284                    $element = self::parse_serialized_values( $data, $pos, $search, $replace );
     285                    if ( $element === '' ) {
     286                        return '';
    124287                    }
    125                 }
    126             }
    127 
    128             if ( $serialized ) {
    129                 return serialize( $data );
    130             }
    131         } catch ( Exception $e ) {
    132         }
    133 
    134         return $data;
     288
     289                    $result .= $element;
     290                }
     291
     292                if ( $data[ $pos ] !== '}' ) {
     293                    return '';
     294                }
     295
     296                $pos++;
     297                $result .= '}';
     298
     299                return $result;
     300
     301            case 'R':
     302            case 'r':
     303                if ( $data[ $pos ] !== ':' ) {
     304                    return '';
     305                }
     306
     307                $pos++;
     308                $end = strpos( $data, ';', $pos );
     309                if ( $end === false ) {
     310                    return '';
     311                }
     312
     313                $ref = substr( $data, $pos, $end - $pos );
     314                $pos = $end + 1;
     315
     316                return $type . ':' . $ref . ';';
     317
     318            default:
     319                return '';
     320        }
    135321    }
    136322
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/database/class-ai1wm-database.php

    r3089446 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
     
    957959
    958960                            // Set query with offset and rows count
    959                             $query = sprintf( 'SELECT %s FROM `%s` AS t1 JOIN (SELECT %s FROM `%s` WHERE %s ORDER BY %s LIMIT %d, %d) AS t2 USING (%s)', $select_columns, $table_name, $table_keys, $table_name, $table_where, $table_keys, $table_offset, AI1WM_MAX_SELECT_RECORDS, $table_keys );
    960 
     961                            if ( defined( 'AI1WM_DISABLE_LATE_ROW_LOOKUPS' ) ) {
     962                                $query = sprintf( 'SELECT %s FROM `%s` AS t1 WHERE %s ORDER BY %s LIMIT %d, %d', $select_columns, $table_name, $table_where, $table_keys, $table_offset, AI1WM_MAX_SELECT_RECORDS );
     963                            } else {
     964                                $query = sprintf( 'SELECT %s FROM `%s` AS t1 JOIN (SELECT %s FROM `%s` WHERE %s ORDER BY %s LIMIT %d, %d) AS t2 USING (%s)', $select_columns, $table_name, $table_keys, $table_name, $table_where, $table_keys, $table_offset, AI1WM_MAX_SELECT_RECORDS, $table_keys );
     965                            }
    961966                        } else {
    962967
     
    16431648
    16441649            // Replace values
    1645             $matches[1] = Ai1wm_Database_Utility::replace_values( $this->get_old_replace_values(), $this->get_new_replace_values(), $matches[1] );
     1650            $matches[1] = Ai1wm_Database_Utility::replace_values( $matches[1], $this->get_old_replace_values(), $this->get_new_replace_values() );
    16461651
    16471652            // Encode base64 characters
     
    16661671
    16671672            // Replace values
    1668             $matches[2] = Ai1wm_Database_Utility::replace_values( $this->get_old_replace_values(), $this->get_new_replace_values(), $matches[2] );
     1673            $matches[2] = Ai1wm_Database_Utility::replace_values( $matches[2], $this->get_old_replace_values(), $this->get_new_replace_values() );
    16691674
    16701675            // Encode base64 characters
     
    16891694
    16901695            // Replace serialized values
    1691             $matches[1] = Ai1wm_Database_Utility::replace_serialized_values( $this->get_old_replace_values(), $this->get_new_replace_values(), $matches[1] );
     1696            $matches[1] = Ai1wm_Database_Utility::replace_serialized_values( $matches[1], $this->get_old_replace_values(), $this->get_new_replace_values() );
    16921697
    16931698            // Encode base64 characters
     
    17091714
    17101715        // Replace serialized values
    1711         $matches[1] = Ai1wm_Database_Utility::replace_serialized_values( $this->get_old_replace_values(), $this->get_new_replace_values(), $matches[1] );
     1716        $matches[1] = Ai1wm_Database_Utility::replace_serialized_values( $matches[1], $this->get_old_replace_values(), $this->get_new_replace_values() );
    17121717
    17131718        // Escape MySQL special characters
     
    17531758     */
    17541759    protected function replace_raw_values( $input ) {
    1755         return Ai1wm_Database_Utility::replace_values( $this->get_old_replace_raw_values(), $this->get_new_replace_raw_values(), $input );
     1760        return Ai1wm_Database_Utility::replace_values( $input, $this->get_old_replace_raw_values(), $this->get_new_replace_raw_values() );
    17561761    }
    17571762
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/filesystem/class-ai1wm-directory.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/filesystem/class-ai1wm-file-htaccess.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/filesystem/class-ai1wm-file-index.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/filesystem/class-ai1wm-file-robots.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/filesystem/class-ai1wm-file-webconfig.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/filesystem/class-ai1wm-file.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/filter/class-ai1wm-recursive-exclude-filter.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/filter/class-ai1wm-recursive-extension-filter.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/iterator/class-ai1wm-recursive-directory-iterator.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/iterator/class-ai1wm-recursive-iterator-iterator.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/backups/backups-list.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/backups/backups-permissions.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/backups/index.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/common/http-authentication.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
    1717 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
     19 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
    1921 * ██╔════╝██╔════╝██╔══██╗██║   ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
  • all-in-one-wp-migration/trunk/lib/view/common/leave-feedback.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/common/maintenance-mode.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
    1717 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
     19 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
    1921 * ██╔════╝██╔════╝██╔══██╗██║   ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
  • all-in-one-wp-migration/trunk/lib/view/common/report-problem.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
    1717 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
     19 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
    1921 * ██╔════╝██╔════╝██╔══██╗██║   ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
  • all-in-one-wp-migration/trunk/lib/view/common/share-buttons.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/common/sidebar-right.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/advanced-settings.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/button-azure-storage.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/button-b2.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/button-box.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/button-digitalocean.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/button-dropbox.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/button-file.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/button-ftp.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/button-gcloud-storage.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/button-gdrive.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/button-glacier.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/button-mega.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/button-onedrive.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/button-pcloud.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/button-s3-client.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/button-s3.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/button-webdav.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/export-buttons.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/export-permissions.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/find-replace.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/help-section.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/export/index.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/avada.php

    r3234191 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/button-azure-storage.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/button-b2.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/button-box.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/button-digitalocean.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/button-dropbox.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/button-file.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/button-ftp.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/button-gcloud-storage.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/button-gdrive.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/button-glacier.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/button-mega.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/button-onedrive.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/button-pcloud.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/button-s3-client.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/button-s3.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/button-url.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/button-webdav.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/done.php

    r3234191 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/import-buttons.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/import-permissions.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/index.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/oxygen.php

    r3234191 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/import/pro.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/main/admin-head.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/main/backups-htaccess-notice.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/main/backups-index-html-notice.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/main/backups-index-php-notice.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/main/backups-path-notice.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/main/backups-robots-txt-notice.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/main/backups-webconfig-notice.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/main/backups.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
    1717 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
     19 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
    1921 * ██╔════╝██╔════╝██╔══██╗██║   ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
     
    2426 */
    2527
    26 
    2728if ( ! defined( 'ABSPATH' ) ) {
    2829    die( 'Kangaroos cannot jump here' );
  • all-in-one-wp-migration/trunk/lib/view/main/contact-support.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/main/missing-role-capability-notice.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/main/multisite-notice.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/main/premium-badge.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
    1717 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
     19 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
    1921 * ██╔════╝██╔════╝██╔══██╗██║   ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
     
    2426 */
    2527
    26 
    2728if ( ! defined( 'ABSPATH' ) ) {
    2829    die( 'Kangaroos cannot jump here' );
  • all-in-one-wp-migration/trunk/lib/view/main/storage-index-html-notice.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/main/storage-index-php-notice.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/main/storage-path-notice.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/main/translate.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/main/wordpress-htaccess-notice.php

    r3221593 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/reset/index.php

    r3045858 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/schedules/index.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/updater/check.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/updater/error.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/updater/modal.php

    r3045858 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/lib/view/updater/update.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
  • all-in-one-wp-migration/trunk/loader.php

    r3089446 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
    1717 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
     19 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
    1921 * ██╔════╝██╔════╝██╔══██╗██║   ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
  • all-in-one-wp-migration/trunk/readme.txt

    r3234191 r3253940  
    55Tested up to: 6.7
    66Requires PHP: 5.3
    7 Stable tag: 7.89
     7Stable tag: 7.90
    88License: GPLv2 or later
    99
     
    2525One feature that makes All-in-One WP Migration widely loved (to the tune of over 6,000 5-star user reviews) is that the technical requirements for installing the plugin are simple.
    2626
    27 If you have WordPress version between 3.3 and 6.7.1 and PHP version between 5.3 and 8.4, you are good to go. All-in-One WP Migration also supports all versions of MySQL, MariaDB and SQLite.
     27If you have WordPress version between 3.3 and 6.7.2 and PHP version between 5.3 and 8.4, you are good to go. All-in-One WP Migration also supports all versions of MySQL, MariaDB and SQLite.
    2828
    2929**Features Spotlight:**
     
    9999
    100100== Changelog ==
     101= 7.90 =
     102**Added**
     103
     104* Introduced a constant to disable MySQL late row lookups for enhanced database performance
     105
     106**Improved**
     107
     108* Enhanced SQLite database integration for improved stability and efficiency
     109* Strengthened serialization replacement mechanism to address an unauthenticated PHP Object Injection vulnerability (CVE-2024-10942). Special thanks to Webbernaut for responsibly disclosing this issue
     110* Preserved the wp_rocket_settings option during exports for improved user experience
     111
     112**Fixed**
     113
     114* Resolved PHP 8.4 deprecation warnings
     115
    101116= 7.89 =
    102117**Improved**
  • all-in-one-wp-migration/trunk/uninstall.php

    r3038703 r3253940  
    11<?php
    22/**
    3  * Copyright (C) 2014-2023 ServMask Inc.
     3 * Copyright (C) 2014-2025 ServMask Inc.
    44 *
    55 * This program is free software: you can redistribute it and/or modify
     
    1515 * You should have received a copy of the GNU General Public License
    1616 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 *
     18 * Attribution: This code is part of the All-in-One WP Migration plugin, developed by
    1719 *
    1820 * ███████╗███████╗██████╗ ██╗   ██╗███╗   ███╗ █████╗ ███████╗██╗  ██╗
Note: See TracChangeset for help on using the changeset viewer.