Files
m5wp.momentry.ddns.net/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-tables.php
OpenCode 09ef1f000f Initial commit: WordPress wp-content (themes, plugins, languages)
- Theme: momentry (custom theme with REST API routes)
- Plugins: code-snippets (contains all API proxies)
- Languages: zh_TW translations
- Excludes: cache, backups, uploads, logs
2026-05-29 19:07:56 +08:00

100 lines
3.9 KiB
PHP

<?php
/**
* Copyright (C) 2014-2025 ServMask Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Attribution: This code is part of the All-in-One WP Migration plugin, developed by
*
* ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
* ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
* ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
* ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
*/
if ( ! defined( 'ABSPATH' ) ) {
die( 'Kangaroos cannot jump here' );
}
class Ai1wm_Export_Enumerate_Tables {
public static function execute( $params ) {
// Set exclude database
if ( isset( $params['options']['no_database'] ) ) {
return $params;
}
// Get total tables count
if ( isset( $params['total_tables_count'] ) ) {
$total_tables_count = (int) $params['total_tables_count'];
} else {
$total_tables_count = 1;
}
// Set progress
Ai1wm_Status::info( __( 'Gathering database tables...', 'all-in-one-wp-migration' ) );
// Get database client
$db_client = Ai1wm_Database_Utility::get_client();
// Include table prefixes
if ( ai1wm_table_prefix() ) {
$db_client->add_table_prefix_filter( ai1wm_table_prefix() );
// Include table prefixes (Webba Booking and CiviCRM)
foreach ( array( 'wbk_', 'civicrm_' ) as $table_name ) {
$db_client->add_table_prefix_filter( $table_name );
}
}
// Create tables list file
$tables_list = ai1wm_open( ai1wm_tables_list_path( $params ), 'w' );
// Exclude selected db tables
$excluded_db_tables = array();
if ( isset( $params['options']['exclude_db_tables'], $params['excluded_db_tables'] ) ) {
$excluded_db_tables = explode( ',', $params['excluded_db_tables'] );
}
// Write table line
foreach ( $db_client->get_tables() as $table_name ) {
if ( ! in_array( $table_name, $excluded_db_tables ) && ai1wm_putcsv( $tables_list, array( $table_name ) ) ) {
$total_tables_count++;
}
}
// Include selected db tables
if ( isset( $params['options']['include_db_tables'] ) && ! empty( $params['included_db_tables'] ) ) {
foreach ( explode( ',', $params['included_db_tables'] ) as $table_name ) {
if ( ai1wm_putcsv( $tables_list, array( $table_name ) ) ) {
$total_tables_count++;
}
}
}
// Set progress
Ai1wm_Status::info( __( 'Database tables gathered.', 'all-in-one-wp-migration' ) );
// Set total tables count
$params['total_tables_count'] = $total_tables_count;
// Close the tables list file
ai1wm_close( $tables_list );
return $params;
}
}