You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.3 KiB
PHTML
79 lines
2.3 KiB
PHTML
7 months ago
|
<?php
|
||
|
/**
|
||
|
* The Updates routine for version 1.0.50
|
||
|
*
|
||
|
* @since 1.0.50
|
||
|
* @package RankMath
|
||
|
* @subpackage RankMath\Updates
|
||
|
* @author Rank Math <support@rankmath.com>
|
||
|
*/
|
||
|
|
||
|
use RankMath\Helper;
|
||
|
|
||
|
defined( 'ABSPATH' ) || exit;
|
||
|
|
||
|
/**
|
||
|
* Enable the new Analytis module
|
||
|
*/
|
||
|
function rank_math_1_0_50_delete_analytic_tables() {
|
||
|
global $wpdb;
|
||
|
|
||
|
if ( defined( 'RANK_MATH_PRO_FILE' ) ) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
$wpdb->query( "DROP TABLE IF EXISTS {$wpdb->prefix}rank_math_analytics_ga" ); // phpcs:ignore
|
||
|
$wpdb->query( "DROP TABLE IF EXISTS {$wpdb->prefix}rank_math_analytics_adsense" ); // phpcs:ignore
|
||
|
$wpdb->query( "DROP TABLE IF EXISTS {$wpdb->prefix}rank_math_analytics_object_links" ); // phpcs:ignore
|
||
|
$wpdb->query( "DROP TABLE IF EXISTS {$wpdb->prefix}rank_math_analytics_keyword_manager" ); // phpcs:ignore
|
||
|
|
||
|
// Old tables.
|
||
|
$wpdb->query( "DROP TABLE IF EXISTS {$wpdb->prefix}rank_math_links" ); // phpcs:ignore
|
||
|
$wpdb->query( "DROP TABLE IF EXISTS {$wpdb->prefix}rank_math_redirections_0_9_17" ); // phpcs:ignore
|
||
|
$wpdb->query( "DROP TABLE IF EXISTS {$wpdb->prefix}rank_math_redirection_sources_0_9_17" ); // phpcs:ignore
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Recreate table if not exits.
|
||
|
*/
|
||
|
function rank_math_1_0_50_recreate_as() {
|
||
|
global $wpdb;
|
||
|
|
||
|
if ( Helper::is_woocommerce_active() ) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
$table_list = [
|
||
|
'actionscheduler_actions',
|
||
|
'actionscheduler_logs',
|
||
|
'actionscheduler_groups',
|
||
|
'actionscheduler_claims',
|
||
|
];
|
||
|
|
||
|
$found_tables = $wpdb->get_col( "SHOW TABLES LIKE '{$wpdb->prefix}actionscheduler%'" ); // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared
|
||
|
foreach ( $table_list as $table_name ) {
|
||
|
if ( ! in_array( $wpdb->prefix . $table_name, $found_tables, true ) ) {
|
||
|
rank_math_1_0_50_recreate_tables();
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Force the data store schema updates.
|
||
|
*/
|
||
|
function rank_math_1_0_50_recreate_tables() {
|
||
|
$store = new ActionScheduler_HybridStore();
|
||
|
add_action( 'action_scheduler/created_table', [ $store, 'set_autoincrement' ], 10, 2 );
|
||
|
|
||
|
$store_schema = new ActionScheduler_StoreSchema();
|
||
|
$logger_schema = new ActionScheduler_LoggerSchema();
|
||
|
$store_schema->register_tables( true );
|
||
|
$logger_schema->register_tables( true );
|
||
|
|
||
|
remove_action( 'action_scheduler/created_table', [ $store, 'set_autoincrement' ], 10 );
|
||
|
}
|
||
|
|
||
|
rank_math_1_0_50_recreate_as();
|
||
|
rank_math_1_0_50_delete_analytic_tables();
|