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.65.php
<?php /** * The Updates routine for version 1.0.65. * * @since 1.0.65 * @package RankMath * @subpackage RankMath\Updates * @author Rank Math <support@rankmath.com> */ use RankMath\Helper; use RankMath\Google\Console; defined( 'ABSPATH' ) || exit; /** * Set defaults for the new options added in this version. */ function rank_math_1_0_65_default_options() { $all_opts = rank_math()->settings->all_raw(); $general = $all_opts['general']; // Turn this option off by default after updating. $general['console_email_reports'] = 'off'; Helper::update_all_settings( $general, null, null ); rank_math()->settings->reset(); } rank_math_1_0_65_default_options(); /** * Add admin notice to inform users about the new Email Reports feature. */ function rank_math_1_0_65_reports_notice() { $active_modules = get_option( 'rank_math_modules', [] ); if ( ! is_array( $active_modules ) || ! in_array( 'analytics', $active_modules, true ) ) { return; } if ( ! Console::is_console_connected() ) { return; } Helper::add_notification( sprintf( // Translators: placeholders are the opening and closing anchor tags. '<svg style="vertical-align: middle; margin-right: 5px" viewBox="0 0 462.03 462.03" xmlns="http://www.w3.org/2000/svg" width="20"><g><path d="m462 234.84-76.17 3.43 13.43 21-127 81.18-126-52.93-146.26 60.97 10.14 24.34 136.1-56.71 128.57 54 138.69-88.61 13.43 21z"></path><path d="m54.1 312.78 92.18-38.41 4.49 1.89v-54.58h-96.67zm210.9-223.57v235.05l7.26 3 89.43-57.05v-181zm-105.44 190.79 96.67 40.62v-165.19h-96.67z"></path></g></svg><strong>' . esc_html__( 'Rank Math: Introducing SEO Performance Reports via Email. %1$sClick here to enable it%2$s.', 'rank-math' ) . '</strong>', '<a href="###ENABLE_EMAIL_REPORTS###">', '</a>' ), [ 'type' => 'warning', 'id' => 'rank_math_analytics_new_email_reports', 'capability' => 'rank_math_analytics', ] ); } rank_math_1_0_65_reports_notice(); /** * Clear scheduled event added in version 1.0.65-beta. * * @return void */ function rank_math_1_0_65_clear_beta_scheduled_event() { $event = 'rank_math/analytics/email_report_event'; $timestamp = wp_next_scheduled( $event ); if ( $timestamp ) { wp_unschedule_event( $timestamp, $event ); } } rank_math_1_0_65_clear_beta_scheduled_event();
Save Changes
Rename File
Rename