OwlCyberSecurity - MANAGER
Edit File: common.php
<?php /** * Common admin class. * * @since 6.0.0 * * @package MonsterInsights * @subpackage Common * @author Chris Christoff */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } function monsterinsights_is_settings_page() { $current_screen = function_exists( 'get_current_screen' ) ? get_current_screen() : false; global $admin_page_hooks; if ( ! is_object( $current_screen ) || empty( $current_screen->id ) || empty( $admin_page_hooks ) ) { return false; } $settings_page = false; if ( ! empty( $admin_page_hooks['monsterinsights_settings'] ) && $current_screen->id === $admin_page_hooks['monsterinsights_settings'] ) { $settings_page = true; } if ( $current_screen->id === 'toplevel_page_monsterinsights_settings' ) { $settings_page = true; } if ( $current_screen->id === 'insights_page_monsterinsights_settings' ) { $settings_page = true; } if ( strpos( $current_screen->id, 'monsterinsights_settings' ) !== false ) { $settings_page = true; } if ( ! empty( $current_screen->base ) && strpos( $current_screen->base, 'monsterinsights_network' ) !== false ) { $settings_page = true; } return $settings_page; } /** * Determine if the current page is the Reports page. * * @return bool */ function monsterinsights_is_reports_page() { $current_screen = function_exists( 'get_current_screen' ) ? get_current_screen() : false; global $admin_page_hooks; if ( ! is_object( $current_screen ) || empty( $current_screen->id ) || empty( $admin_page_hooks ) ) { return false; } $reports_page = false; if ( ! empty( $admin_page_hooks['monsterinsights_reports'] ) && $current_screen->id === $admin_page_hooks['monsterinsights_reports'] ) { $reports_page = true; } if ( 'toplevel_page_monsterinsights_reports' === $current_screen->id ) { $reports_page = true; } if ( strpos( $current_screen->id, 'monsterinsights_reports' ) !== false ) { $reports_page = true; } return $reports_page; } /** * Determine if the current page is any of the MI admin page. * * @return bool */ function monsterinsights_is_own_admin_page() { if ( monsterinsights_is_reports_page() ) { return true; } if ( monsterinsights_is_settings_page() ) { return true; } if ( 'dashboard_page_monsterinsights-getting-started' === get_current_screen()->id ) { return true; } return false; } /** * Remove Assets that conflict with ours from our screens. * * @return null Return early if not on the proper screen. * @since 6.0.4 * @access public * */ function monsterinsights_remove_conflicting_asset_files() { // Get current screen. $screen = get_current_screen(); // Bail if we're not on a MonsterInsights screen. if ( empty( $screen->id ) || strpos( $screen->id, 'monsterinsights' ) === false ) { return; } $styles = array( 'kt_admin_css', // Pinnacle theme 'select2-css', // Schema theme 'tweetshare_style', // TweetShare - Click To Tweet 'tweetshare_custom_style', // TweetShare - Click To Tweet 'tweeetshare_custome_style', // TweetShare - Click To Tweet 'tweeetshare_notice_style', // TweetShare - Click To Tweet 'tweeetshare_theme_style', // TweetShare - Click To Tweet 'tweeetshare_tweet_box_style', // TweetShare - Click To Tweet 'soultype2-admin', // SoulType Plugin 'thesis-options-stylesheet', // Thesis Options Stylesheet 'imagify-sweetalert-core', // Imagify 'imagify-sweetalert', // Imagify 'smls-backend-style', // Smart Logo Showcase Lite 'wp-reactjs-starter', // wp-real-media-library 'control-panel-modal-plugin', // Ken Theme 'theme-admin-css', // Vitrine Theme 'qi-framework-styles', // Artisan Nayma Theme 'artisan-pages-style', // Artisan Pages Plugin 'control-panel-modal-plugin', // Ken Theme 'sweetalert', // Church Suite Theme by Webnus 'woo_stock_alerts_admin_css', // WooCommerce bolder product alerts 'custom_wp_admin_css', // Fix for Add Social Share 'fo_css', // Fix for Add Social Share 'font_css', // Fix for Add Social Share 'font2_css', // Fix for Add Social Share 'font3_css', // Fix for Add Social Share 'hover_css', // Fix for Add Social Share 'fontend_styling', // Fix for Add Social Share 'datatable', // WP Todo 'bootstrap', // WP Todo 'flipclock', // WP Todo 'repuso_css_admin', // Social testimonials and reviews by Repuso ); $scripts = array( 'kad_admin_js', // Pinnacle theme 'dt-chart', // DesignThemes core features plugin 'tweeetshare_font_script', // TweetShare - Click To Tweet 'tweeetshare_jquery_script', // TweetShare - Click To Tweet 'tweeetshare_jqueryui_script', // TweetShare - Click To Tweet 'tweeetshare_custom_script', // TweetShare - Click To Tweet 'imagify-promise-polyfill', // Imagify 'imagify-sweetalert', // Imagify 'imagify-chart', // Imagify 'chartjs', // Comet Cache Pro 'wp-reactjs-starter', // wp-real-media-library 'jquery-tooltipster', // WP Real Media Library 'jquery-nested-sortable', // WP Real Media Library 'jquery-aio-tree', // WP Real Media Library 'wp-media-picker', // WP Real Media Library 'rml-general', // WP Real Media Library 'rml-library', // WP Real Media Library 'rml-grid', // WP Real Media Library 'rml-list', // WP Real Media Library 'rml-modal', // WP Real Media Library 'rml-order', // WP Real Media Library 'rml-meta', // WP Real Media Library 'rml-uploader', // WP Real Media Library 'rml-options', // WP Real Media Library 'rml-usersettings', // WP Real Media Library 'rml-main', // WP Real Media Library 'control-panel-sweet-alert', // Ken Theme 'sweet-alert-js', // Vitrine Theme 'theme-admin-script', // Vitrine Theme 'sweetalert', // Church Suite Theme by Webnus 'be_alerts_charts', // WooCommerce bolder product alerts 'magayo-lottery-results', // Magayo Lottery Results 'control-panel-sweet-alert', // Ken Theme 'cpm_chart', // WP Project Manager 'adminscripts', // Artisan Nayma Theme 'artisan-pages-script', // Artisan Pages Plugin 'tooltipster', // Grand News Theme 'fancybox', // Grand News Theme 'grandnews-admin-cript', // Grand News Theme 'colorpicker', // Grand News Theme 'eye', // Grand News Theme 'icheck', // Grand News Theme 'learn-press-chart', // LearnPress 'theme-script-main', // My Listing Theme by 27collective 'selz', // Selz eCommerce 'tie-admin-scripts', // Tie Theme 'blossomthemes-toolkit', // BlossomThemes Toolkit 'illdy-widget-upload-image', // Illdy Companion By Colorlib 'moment.js', // WooCommerce Table Rate Shipping 'default', // Bridge Theme 'qode-tax-js', // Bridge Theme 'wc_smartship_moment_js', // WooCommerce Posti SmartShip by markup.fi 'ecwid-admin-js', // Fixes Conflict for Ecwid Shopping Cart 'td-wp-admin-js', // Newspaper by tagDiv 'moment', // Screets Live Chat 'wpmf-base', // WP Media Folder Fix 'wpmf-media-filters', // WP Media Folder Fix 'wpmf-folder-tree', // WP Media Folder Fix 'wpmf-assign-tree', // WP Media Folder Fix 'js_files_for_wp_admin', // TagDiv Composer Fix 'tdb_js_files_for_wp_admin_last', // TagDiv Composer Fix 'tdb_js_files_for_wp_admin', // TagDiv Composer Fix 'wd-functions', // affiliate boxes 'ellk-aliExpansion', // Ali Dropship Plugin 'ftmetajs', // Houzez Theme 'qode_admin_default', // Fix For Stockholm Theme 'qodef-tax-js', // Fix for Prowess Theme 'qodef-user-js', // Fix for Prowess Theme 'qodef-ui-admin', // Fix for Prowess Theme 'ssi_script', // Fix for Add Social Share 'live_templates', // Fix for Add Social Share 'default', // Fix for Add Social Share 'handsontable', // Fix WP Tables 'moment-js', // Magee Shortcodes 'postbox', // Scripts from wp-admin enqueued everywhere by WP Posts Filter 'link', // Scripts from wp-admin enqueued everywhere by WP Posts Filter 'wpvr_scripts', // WP Video Robot 'wpvr_scripts_loaded', // WP Video Robot 'wpvr_scripts_assets', // WP Video Robot 'writee_widget_admin', // Fix for the Writtee theme '__ytprefs_admin__', // Fix for YouTube by EmbedPlus plugin 'momentjs', // Fix for Blog Time plugin 'c2c_BlogTime', // Fix for Blog Time plugin 'material-wp', // Fix for MaterialWP plugin 'wp-color-picker-alpha', // Fix for MaterialWP plugin 'grandtour-theme-script', // Grandtour Theme 'swifty-img-widget-admin-script', // Fix for Swifty Image Widget 'datatable', // WP Todo 'flipclock', // WP Todo 'bootstrap', // WP Todo 'repuso_js_admin', // Social testimonials and reviews by Repuso 'chart', // Video Mate Pro Theme 'reuse_vendor', // RedQ Reuse Form 'jetpack-onboarding-vendor', // Jetpack Onboarding Bluehost 'date-js', // Google Analytics by Web Dorado ); if ( ! empty( $styles ) ) { foreach ( $styles as $style ) { wp_dequeue_style( $style ); // Remove CSS file from MI screen wp_deregister_style( $style ); } } if ( ! empty( $scripts ) ) { foreach ( $scripts as $script ) { wp_dequeue_script( $script ); // Remove JS file from MI screen wp_deregister_script( $script ); } } $third_party = array( 'select2', 'sweetalert', 'clipboard', 'matchHeight', 'inputmask', 'jquery-confirm', 'list', 'toastr', 'tooltipster', 'flag-icon', 'bootstrap', 'vue.js', 'vuejs', 'vue_js', ); global $wp_styles; // Loop through all registered styles. foreach ( $wp_styles->queue as $handle ) { // If the source file is is not from wp-content directory. if ( strpos( $wp_styles->registered[ $handle ]->src, 'wp-content' ) === false ) { continue; } // If the handle contains monsterinsights in his name. if ( strpos( $wp_styles->registered[ $handle ]->handle, 'monsterinsights' ) !== false ) { continue; } // Loop through our listed handles. foreach ( $third_party as $partial ) { // If the handle contains conflicted style. if ( strpos( $wp_styles->registered[ $handle ]->handle, $partial ) !== false ) { wp_dequeue_style( $handle ); // Remove css file from MI screen wp_deregister_style( $handle ); break; // If the source file contains conflicted style. } else if ( strpos( $wp_styles->registered[ $handle ]->src, $partial ) !== false ) { wp_dequeue_style( $handle ); // Remove css file from MI screen wp_deregister_style( $handle ); break; } } } global $wp_scripts; // Loop through all registered scripts. foreach ( $wp_scripts->queue as $handle ) { // Bail early if the source file or handle is empty. if ( empty( $wp_scripts->registered[ $handle ]->src ) || empty( $wp_scripts->registered[ $handle ]->handle ) ) { continue; } // If the source file is is not from wp-content directory. if ( strpos( $wp_scripts->registered[ $handle ]->src, 'wp-content' ) === false ) { continue; } // If the handle contains monsterinsights in his name. if ( strpos( $wp_scripts->registered[ $handle ]->handle, 'monsterinsights' ) !== false ) { continue; } // Loop through our listed handles. foreach ( $third_party as $partial ) { // If the handle contains conflicted script handle. if ( strpos( $wp_scripts->registered[ $handle ]->handle, $partial ) !== false ) { wp_dequeue_script( $handle ); // Remove JS file from MI screen wp_deregister_script( $handle ); break; // If the source file contains conflicted script handle. } else if ( strpos( $wp_scripts->registered[ $handle ]->src, $partial ) !== false ) { wp_dequeue_script( $handle ); // Remove JS file from MI screen wp_deregister_script( $handle ); break; } } } // Remove actions from themes that are not following best practices and break the admin doing so // Theme: Newspaper by tagDiv remove_action( 'admin_enqueue_scripts', 'load_wp_admin_js' ); remove_action( 'admin_enqueue_scripts', 'load_wp_admin_css' ); remove_action( 'admin_print_scripts-widgets.php', 'td_on_admin_print_scripts_farbtastic' ); remove_action( 'admin_print_styles-widgets.php', 'td_on_admin_print_styles_farbtastic' ); remove_action( 'admin_print_footer_scripts', 'check_if_media_uploads_is_loaded', 9999 ); remove_action( 'print_media_templates', 'td_custom_gallery_settings_hook' ); remove_action( 'print_media_templates', 'td_change_backbone_js_hook' ); remove_action( 'admin_head', 'tdc_on_admin_head' ); // TagDiv Composer Fix remove_action( 'print_media_templates', 'us_media_templates' ); // Impreza Theme Fix remove_action( 'admin_footer', 'gt3pg_add_gallery_template' ); // GT3 Photo & Video Gallery By GT3 Themes Plugin Fix // Plugin WP Booklist: remove_action( 'admin_footer', 'wpbooklist_jre_dismiss_prem_notice_forever_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_dashboard_add_book_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_edit_book_show_form_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_show_book_in_colorbox_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_new_lib_shortcode_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_dashboard_save_library_display_options_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_dashboard_save_post_display_options_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_dashboard_save_page_display_options_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_update_display_options_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_edit_book_pagination_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_edit_book_switch_lib_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_edit_book_search_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_edit_book_actual_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_delete_book_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_user_apis_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_upload_new_stylepak_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_upload_new_post_template_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_upload_new_page_template_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_create_db_library_backup_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_restore_db_library_backup_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_create_csv_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_amazon_localization_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_delete_book_bulk_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_reorder_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_exit_results_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_storytime_select_category_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_storytime_get_story_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_storytime_expand_browse_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_storytime_save_settings_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_delete_story_action_javascript' ); } add_action( 'admin_enqueue_scripts', 'monsterinsights_remove_conflicting_asset_files', 9999 ); /** * Remove non-MI notices from MI page. * * @return null Return early if not on the proper screen. * @since 6.0.0 * @access public * */ function hide_non_monsterinsights_warnings() { // Bail if we're not on a MonsterInsights screen. if ( empty( $_REQUEST['page'] ) || strpos( sanitize_text_field( $_REQUEST['page'] ), 'monsterinsights' ) === false ) { return; } global $wp_filter; if ( ! empty( $wp_filter['user_admin_notices']->callbacks ) && is_array( $wp_filter['user_admin_notices']->callbacks ) ) { foreach ( $wp_filter['user_admin_notices']->callbacks as $priority => $hooks ) { foreach ( $hooks as $name => $arr ) { if ( is_object( $arr['function'] ) && $arr['function'] instanceof Closure ) { unset( $wp_filter['user_admin_notices']->callbacks[ $priority ][ $name ] ); continue; } if ( ! empty( $arr['function'][0] ) && is_object( $arr['function'][0] ) && strpos( strtolower( get_class( $arr['function'][0] ) ), 'monsterinsights' ) !== false ) { continue; } if ( ! empty( $name ) && strpos( $name, 'monsterinsights' ) === false ) { unset( $wp_filter['user_admin_notices']->callbacks[ $priority ][ $name ] ); } } } } if ( ! empty( $wp_filter['admin_notices']->callbacks ) && is_array( $wp_filter['admin_notices']->callbacks ) ) { foreach ( $wp_filter['admin_notices']->callbacks as $priority => $hooks ) { foreach ( $hooks as $name => $arr ) { if ( is_object( $arr['function'] ) && $arr['function'] instanceof Closure ) { unset( $wp_filter['admin_notices']->callbacks[ $priority ][ $name ] ); continue; } if ( ! empty( $arr['function'][0] ) && is_object( $arr['function'][0] ) && strpos( strtolower( get_class( $arr['function'][0] ) ), 'monsterinsights' ) !== false ) { continue; } if ( ! empty( $name ) && strpos( $name, 'monsterinsights' ) === false ) { unset( $wp_filter['admin_notices']->callbacks[ $priority ][ $name ] ); } } } } if ( ! empty( $wp_filter['all_admin_notices']->callbacks ) && is_array( $wp_filter['all_admin_notices']->callbacks ) ) { foreach ( $wp_filter['all_admin_notices']->callbacks as $priority => $hooks ) { foreach ( $hooks as $name => $arr ) { if ( is_object( $arr['function'] ) && $arr['function'] instanceof Closure ) { unset( $wp_filter['all_admin_notices']->callbacks[ $priority ][ $name ] ); continue; } if ( ! empty( $arr['function'][0] ) && is_object( $arr['function'][0] ) && strpos( strtolower( get_class( $arr['function'][0] ) ), 'monsterinsights' ) !== false ) { continue; } if ( ! empty( $name ) && strpos( $name, 'monsterinsights' ) === false ) { unset( $wp_filter['all_admin_notices']->callbacks[ $priority ][ $name ] ); } } } } } add_action( 'admin_print_scripts', 'hide_non_monsterinsights_warnings' ); add_action( 'admin_head', 'hide_non_monsterinsights_warnings', PHP_INT_MAX ); /** * Called whenever an upgrade button / link is displayed in Lite, this function will * check if there's a shareasale ID specified. * * There are three ways to specify an ID, ordered by highest to lowest priority * - add_filter( 'monsterinsights_shareasale_id', function() { return 1234; } ); * - define( 'MONSTERINSIGHTS_SHAREASALE_ID', 1234 ); * - get_option( 'monsterinsights_shareasale_id' ); (with the option being in the wp_options table) * * If an ID is present, returns the ShareASale link with the affiliate ID, and tells * ShareASale to then redirect to monsterinsights.com/lite * * If no ID is present, just returns the monsterinsights.com/lite URL with UTM tracking. * * @return string Upgrade link. * @since 6.0.0 * @access public * */ function monsterinsights_get_upgrade_link( $medium = '', $campaign = '', $url = '' ) { $url = monsterinsights_get_url( $medium, $campaign, $url, false ); if ( monsterinsights_is_pro_version() ) { return esc_url( $url ); } // Get the ShareASale ID $shareasale_id = monsterinsights_get_shareasale_id(); // If we have a shareasale ID return the shareasale url if ( ! empty( $shareasale_id ) ) { $shareasale_id = absint( $shareasale_id ); return esc_url( monsterinsights_get_shareasale_url( $shareasale_id, $url ) ); } else { return esc_url( $url ); } } function monsterinsights_ublock_notice() { ob_start(); ?> <div id="monsterinsights-ublock-origin-error" class="error inline" style="display:none;"> <?php // Translators: Placeholders are for links to fix the issue. printf( esc_html__( 'MonsterInsights has detected that it\'s files are being blocked. This is usually caused by a adblock browser plugin (particularly uBlock Origin), or a conflicting WordPress theme or plugin. This issue only affects the admin side of MonsterInsights. To solve this, ensure MonsterInsights is whitelisted for your website URL in any adblock browser plugin you use. For step by step directions on how to do this, %1$sclick here%2$s. If this doesn\'t solve the issue (rare), send us a ticket %3$shere%2$s and we\'ll be happy to help diagnose the issue.', 'google-analytics-for-wordpress' ), '<a href="https://monsterinsights.com/docs/monsterinsights-asset-files-blocked/" target="_blank" rel="noopener noreferrer" referrer="no-referrer">', '</a>', '<a href="https://monsterinsights.com/contact/" target="_blank" rel="noopener noreferrer" referrer="no-referrer">' ); ?> </div> <?php return ob_get_clean(); } /** * Some themes/plugins don't add proper checks and load JS code in all admin pages causing conflicts. */ function monsterinsights_remove_unnecessary_footer_hooks() { $screen = get_current_screen(); // Bail if we're not on a MonsterInsights screen. if ( empty( $screen->id ) || strpos( $screen->id, 'monsterinsights' ) === false ) { return; } // Remove js code added by Newspaper theme - version 8.8.0. remove_action( 'print_media_templates', 'td_custom_gallery_settings_hook' ); remove_action( 'print_media_templates', 'td_change_backbone_js_hook' ); // Remove js code added by the Brooklyn theme - version 4.5.3.1. remove_action( 'print_media_templates', 'ut_create_gallery_options' ); // Remove js code added by WordPress Book List Plugin - version 5.8.1. remove_action( 'admin_footer', 'wpbooklist_jre_dismiss_prem_notice_forever_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_dashboard_add_book_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_edit_book_show_form_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_show_book_in_colorbox_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_new_lib_shortcode_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_dashboard_save_library_display_options_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_dashboard_save_post_display_options_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_dashboard_save_page_display_options_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_update_display_options_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_edit_book_pagination_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_edit_book_switch_lib_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_edit_book_search_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_edit_book_actual_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_delete_book_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_user_apis_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_upload_new_stylepak_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_upload_new_post_template_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_upload_new_page_template_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_create_db_library_backup_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_restore_db_library_backup_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_create_csv_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_amazon_localization_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_delete_book_bulk_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_reorder_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_exit_results_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_storytime_select_category_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_storytime_get_story_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_storytime_expand_browse_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_storytime_save_settings_action_javascript' ); remove_action( 'admin_footer', 'wpbooklist_delete_story_action_javascript' ); } add_action( 'admin_head', 'monsterinsights_remove_unnecessary_footer_hooks', 15 ); /** * Prevent plugins/themes from removing the version number from scripts loaded by our plugin. * Ideally those plugins/themes would follow WordPress coding best practices, but in lieu of that * we can at least attempt to prevent 99% of them from doing bad things. * * @param string $src The script source. * * @return string */ function monsterinsights_prevent_version_number_removal( $src ) { // Apply this only to admin-side scripts. if ( ! is_admin() ) { return $src; } // Make sure are only changing our scripts and only if the version number is missing. if ( ( false !== strpos( $src, 'monsterinsights' ) || false !== strpos( $src, 'google-analytics-for-wordpress' ) || false !== strpos( $src, 'google-analytics-premium' ) ) && false === strpos( $src, '?ver' ) ) { $src = add_query_arg( 'ver', monsterinsights_get_asset_version(), $src ); } return $src; } add_filter( 'script_loader_src', 'monsterinsights_prevent_version_number_removal', 9999, 1 ); add_filter( 'style_loader_src', 'monsterinsights_prevent_version_number_removal', 9999, 1 ); /** * Data used for the Vue scripts to display old PHP and WP versions warnings. */ function monsterinsights_get_php_wp_version_warning_data() { global $wp_version; $compatible_php_version = apply_filters( 'monsterinsights_compatible_php_version', false ); $compatible_wp_version = apply_filters( 'monsterinsights_compatible_wp_version', false ); return array( 'php_version' => phpversion(), 'php_version_below_54' => apply_filters( 'monsterinsights_temporarily_hide_php_under_56_upgrade_warnings', version_compare( phpversion(), $compatible_php_version['warning'], '<' ) ), 'php_version_below_56' => apply_filters( 'monsterinsights_temporarily_hide_php_56_upgrade_warnings', version_compare( phpversion(), $compatible_php_version['warning'], '>=' ) && version_compare( phpversion(), $compatible_php_version['recommended'], '<' ) ), 'php_update_link' => monsterinsights_get_url( 'settings-notice', 'settings-page', 'https://www.monsterinsights.com/docs/update-php/' ), 'wp_version' => $wp_version, 'wp_version_below_46' => version_compare( $wp_version, $compatible_wp_version['warning'], '<' ), 'wp_version_below_49' => version_compare( $wp_version, $compatible_wp_version['recommended'], '<' ), 'wp_update_link' => monsterinsights_get_url( 'settings-notice', 'settings-page', 'https://www.monsterinsights.com/docs/update-wordpress/' ), ); } /** * Check WP and PHP version and add contextual notifications for upgrades. */ function monsterinsights_maybe_add_wp_php_version_notification() { global $wp_version; $icon = '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="#FAD1D1"/><path d="M17.3634 19.0714C17.792 19.4821 18.0063 19.9821 18.0063 20.5714C18.0063 21.1607 17.792 21.6607 17.3634 22.0714C16.9527 22.5 16.4527 22.7143 15.8634 22.7143C15.2742 22.7143 14.7652 22.5 14.3367 22.0714C13.9259 21.6607 13.7206 21.1607 13.7206 20.5714C13.7206 19.9821 13.9259 19.4821 14.3367 19.0714C14.7652 18.6429 15.2742 18.4286 15.8634 18.4286C16.4527 18.4286 16.9527 18.6429 17.3634 19.0714ZM13.9617 9.66964C13.9617 9.49107 14.0242 9.33929 14.1492 9.21429C14.2742 9.07143 14.4259 9 14.6045 9H17.1224C17.3009 9 17.4527 9.07143 17.5777 9.21429C17.7027 9.33929 17.7652 9.49107 17.7652 9.66964L17.3902 16.9554C17.3902 17.1339 17.3277 17.2857 17.2027 17.4107C17.0777 17.5179 16.9259 17.5714 16.7474 17.5714H14.9795C14.8009 17.5714 14.6492 17.5179 14.5242 17.4107C14.3992 17.2857 14.3367 17.1339 14.3367 16.9554L13.9617 9.66964Z" fill="#EB5757"/></svg>'; $needs_php_warning = version_compare( phpversion(), '5.6', '<' ); $needs_wp_warning = version_compare( $wp_version, '4.9', '<' ); if ( $needs_php_warning ) { $notification['id'] = 'upgrade_php_56_notification'; $notification['title'] = __( 'ACTION REQUIRED: Your PHP version is putting your site at risk!', 'google-analytics-for-wordpress' ); if ( $needs_wp_warning ) { $notification['title'] = __( 'ACTION REQUIRED: Speed your website up 400% with a single email!', 'google-analytics-for-wordpress' ); } $php_url = monsterinsights_get_url( 'notifications', 'upgrade-php', 'https://www.monsterinsights.com/docs/update-php' ); $notification['type'] = array( 'basic', 'lite', 'master', 'plus', 'pro' ); // Translators: Placeholder is for the current PHP version. $notification['content'] = sprintf( esc_html__( 'In the next major release of MonsterInsights we are planning to remove support for the version of PHP you are using (%s). This insecure version is no longer supported by WordPress itself, so you are already missing out on the latest features of WordPress along with critical updates for security and performance (modern PHP versions make websites much faster).', 'google-analytics-for-wordpress' ), phpversion() ) . "\n\n"; // Translators: Placeholders add a link to an article. $notification['content'] .= sprintf( esc_html__( 'To ensure MonsterInsights and other plugins on your site continue to function properly, and avoid putting your site at risk, please take a few minutes to ask your website hosting provider to upgrade the version of PHP to a modern PHP version (7.2 or newer). We provide helpful templates for how to ask them %1$shere%2$s.', 'google-analytics-for-wordpress' ), '<a target="_blank" href="' . $php_url . '">', '</a>' ) . "\n\n"; $notification['content'] .= esc_html__( 'Upgrading your PHP version will make sure you are able to continue using WordPress without issues in the future, keep your site secure, and will also make your website up to 400% faster!', 'google-analytics-for-wordpress' ); $notification['icon'] = $icon; $notification['btns'] = array( 'learn_more' => array( 'url' => $php_url, 'text' => esc_html__( 'Learn More', 'google-analytics-for-wordpress' ), ), ); // Add the notification. MonsterInsights()->notifications->add( $notification ); } if ( $needs_wp_warning ) { $isitwp_url = 'https://www.isitwp.com/upgrading-wordpress-is-easier-than-you-think/?utm_source=monsterinsights&utm_medium=notifications&utm_campaign=upgradewp'; $wpbeginner_url = monsterinsights_get_url( 'notifications', 'pgradewp', 'https://www.wpbeginner.com/beginners-guide/why-you-should-always-use-the-latest-version-of-wordpress/' ); $notification['id'] = 'upgrade_wp_49_notification'; $notification['title'] = __( 'ACTION REQUIRED: Your WordPress version is putting your site at risk!', 'google-analytics-for-wordpress' ); $notification['type'] = array( 'basic', 'lite', 'master', 'plus', 'pro' ); // Translators: Placeholder is for the current WordPress version. $notification['content'] = sprintf( esc_html__( 'In the next major release of MonsterInsights we are planning to remove support for the version of WordPress you are using (version %s). This version is several years out of date, and most plugins do not support this version anymore, so you could be missing out on critical updates for performance and security already!', 'google-analytics-for-wordpress' ), $wp_version ) . "\n\n"; $notification['content'] .= esc_html__( 'The good news: updating WordPress has never been easier and only takes a few moments.', 'google-analytics-for-wordpress' ); // Translators: Placeholders add links to articles. $notification['content'] .= sprintf( esc_html__( 'To update, we recommend following this %1$sstep by step guide for updating WordPress%2$s from IsItWP and afterwards check out %3$sWhy You Should Always Use the Latest Version of WordPress%4$s on WPBeginner.', 'google-analytics-for-wordpress' ), '<a target="_blank" href="' . $isitwp_url . '">', '</a>', '<a target="_blank" href="' . $wpbeginner_url . '">', '</a>' ) . "\n\n"; $notification['icon'] = $icon; $notification['btns'] = array( 'learn_more' => array( 'url' => $isitwp_url, 'text' => esc_html__( 'Learn More', 'google-analytics-for-wordpress' ), ), ); // Add the notification. MonsterInsights()->notifications->add( $notification ); } } add_action( 'admin_init', 'monsterinsights_maybe_add_wp_php_version_notification' ); /** * Add notification for Year In Review report for year 2023. * * @return void * @since 7.13.2 * */ function monsterinsights_year_in_review_notification() { // Check if dates are between Jan 1st 2023 & 14th Jan 2023. if ( monsterinsights_date_is_between( '2023-01-01', '2023-01-14' ) ) { $notification['id'] = 'monsterinsights_notification_year_in_review'; $notification['type'] = array( 'basic', 'lite', 'master', 'plus', 'pro' ); $notification['start'] = '2023-01-01'; $notification['end'] = '2023-01-14'; $notification['title'] = esc_html__( 'View 2023 Year in Review report!', 'google-analytics-for-wordpress' ); $notification['content'] = esc_html__( 'See how your website performed this year and find tips along the way to help grow even more in 2024!', 'google-analytics-for-wordpress' ); $notification['btns'] = array( 'learn_more' => array( 'url' => esc_url( admin_url( 'admin.php?page=monsterinsights_reports#/year-in-review' ) ), 'text' => esc_html__( 'Learn More', 'google-analytics-for-wordpress' ), ), ); // Add the notification. MonsterInsights()->notifications->add( $notification ); } } add_action( 'admin_init', 'monsterinsights_year_in_review_notification' ); /** * Avoid UI errors by filtering eCommerce data when the addon is missing. * For now, it will be applied only to the `yearinreview` report. * * @param $data Array Report data. * @param $name string Report name * @param $report Object Report object. * @return mixed */ function monsterinsights_year_in_review_check_for_ecommerce( $data, $name, $report ) { if ( $name === 'yearinreview' && ! class_exists( 'MonsterInsights_eCommerce' ) ) { unset( $data['data']['ecommerce'] ); } return $data; } add_filter( 'monsterinsights_vue_reports_data', 'monsterinsights_year_in_review_check_for_ecommerce', 3, 10 ); /** * Dynamic dates for Year In Review report */ function monsterinsights_yearinreview_dates() { $current_date = wp_date( 'Y-m-d' ); $current_year = wp_date( 'Y' ); $report_year = $current_year - 1; $report_year = 2023; $next_year = 2024; $show_report = false; $next_year = (string) $report_year + 1; $show_report_start_date = wp_date( 'Y-m-d', strtotime( 'Jan 01, ' . $current_year ) ); $show_report_end_date = wp_date( 'Y-m-d', strtotime( 'Jan 14, ' . $current_year ) ); if ( $current_date >= $show_report_start_date && $current_date <= $show_report_end_date ) { $show_report = true; } if ( function_exists( 'monsterinsights_is_debug_mode' ) && monsterinsights_is_debug_mode() ) { $show_report = true; } return array( 'report_year' => $report_year, 'next_year' => $next_year, 'show_report' => apply_filters( 'monsterinsights_yearinreview_show_report', $show_report ), ); } function monsterinsights_get_sitei() { $auth_key = defined( 'AUTH_KEY' ) ? AUTH_KEY : ''; $secure_auth_key = defined( 'SECURE_AUTH_KEY' ) ? SECURE_AUTH_KEY : ''; $logged_in_key = defined( 'LOGGED_IN_KEY' ) ? LOGGED_IN_KEY : ''; $sitei = $auth_key . $secure_auth_key . $logged_in_key; $sitei = preg_replace( '/[^a-zA-Z0-9]/', '', $sitei ); $sitei = sanitize_text_field( $sitei ); $sitei = trim( $sitei ); $sitei = ( strlen( $sitei ) > 30 ) ? substr( $sitei, 0, 30 ) : $sitei; return $sitei; } /** * Inlcude admin assets files. */ require_once __DIR__ . '/admin-assets.php';