File Editor
Directories:
.. (Back)
Files:
update-1.0.103.1.php
update-1.0.104.php
update-1.0.107.3.php
update-1.0.110.php
update-1.0.201.1.php
update-1.0.201.php
update-1.0.202.php
update-1.0.208.php
update-1.0.209.php
update-1.0.211.php
update-1.0.24.php
update-1.0.28.php
update-1.0.30.php
update-1.0.36.1.php
update-1.0.36.php
update-1.0.37.3.php
update-1.0.37.php
update-1.0.39.php
update-1.0.40.php
update-1.0.42.php
update-1.0.43.php
update-1.0.46.php
update-1.0.47.php
update-1.0.49.php
update-1.0.50.php
update-1.0.52.php
update-1.0.54.php
update-1.0.55.php
update-1.0.56.php
update-1.0.62.php
update-1.0.63.php
update-1.0.65.php
update-1.0.67.php
update-1.0.76.php
update-1.0.79.php
update-1.0.84.php
update-1.0.86.php
update-1.0.89.php
update-1.0.98.php
Create New File
Create
Edit File: update-1.0.49.php
<?php /** * The Updates routine for version 1.0.49 * * @since 1.0.49 * @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_49_enable_new_analytics_module() { $active_modules = get_option( 'rank_math_modules', [] ); if ( is_array( $active_modules ) && in_array( 'search-console', $active_modules, true ) ) { Helper::update_modules( [ 'analytics' => 'on' ] ); rank_math_1_0_49_reconnect_sc_notification(); } } /** * Sync the user roles with new module. */ function rank_math_1_0_49_sync_user_roles() { wp_roles(); foreach ( Helper::get_roles() as $slug => $role ) { $role = get_role( $slug ); if ( ! $role ) { continue; } if ( $role->has_cap( 'rank_math_search_console' ) ) { $role->add_cap( 'rank_math_analytics' ); $role->remove_cap( 'rank_math_search_console' ); } } } /** * Show notice to re-connect if Search Console was previously connected. * * @return bool */ function rank_math_1_0_49_reconnect_sc_notification() { $key = 'rank_math_search_console_data'; $option = get_option( $key, [] ); if ( ! is_array( $option ) || empty( $option['authorized'] ) ) { return; } Helper::add_notification( sprintf( // Translators: placeholders are the opening and closing anchor tags. esc_html__( 'Thank you for updating Rank Math! We\'ve completely revamped our Analytics module with Google Analytics & Google Search Console integrations. For a seamless experience, please re-authenticate your Google account. %1$sClick here to Connect%2$s', 'rank-math' ), '<div style="margin: 10px 0;"><a href="' . Helper::get_admin_url( 'options-general#setting-panel-analytics' ) . '" class="button button-primary">', '</a></div>' ), [ 'type' => 'warning', 'id' => 'rank_math_analytics_reauthenticate', ] ); } rank_math_1_0_49_sync_user_roles(); rank_math_1_0_49_enable_new_analytics_module();
Save Changes
Rename File
Rename