PATH:
home
/
lab2454c
/
mact34.com
/
wp-content
/
plugins
/
google-analytics-for-wordpress
/
includes
/
admin
/
reports
<?php /** * Overview Report * * Ensures all of the reports have a uniform class with helper functions. * * @since 6.0.0 * * @package MonsterInsights * @subpackage Reports * @author Chris Christoff */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } final class MonsterInsights_Report_Overview extends MonsterInsights_Report { public $title; public $class = 'MonsterInsights_Report_Overview'; public $name = 'overview'; public $version = '1.0.0'; public $level = 'lite'; /** * Primary class constructor. * * @access public * @since 6.0.0 */ public function __construct() { $this->title = __( 'Overview', 'google-analytics-for-wordpress' ); parent::__construct(); } /** * Prepare report-specific data for output. * * @param array $data The data from the report before it gets sent to the frontend. * * @return mixed */ public function prepare_report_data( $data ) { // Add flags to the countries report. if ( ! empty( $data['data']['countries'] ) ) { $country_names = monsterinsights_get_country_list( true ); foreach ( $data['data']['countries'] as $key => $country ) { $data['data']['countries'][ $key ]['name'] = isset( $country_names[ $country['iso'] ] ) ? $country_names[ $country['iso'] ] : $country['iso']; } } // Escape urls for the top pages report. if ( ! empty( $data['data']['toppages'] ) ) { foreach ( $data['data']['toppages'] as $key => $page ) { $title = $data['data']['toppages'][ $key ]['title']; $url = '(not set)' === $title ? '' : esc_url( $data['data']['toppages'][ $key ]['hostname'] ); $data['data']['toppages'][ $key ]['hostname'] = $url; } } // Bounce rate add symbol. if ( ! empty( $data['data']['infobox']['bounce']['value'] ) ) { $data['data']['infobox']['bounce']['value'] .= '%'; } // Add GA links. if ( ! empty( $data['data'] ) ) { $data['data']['galinks'] = array( 'countries' => 'https://analytics.google.com/analytics/web/#report/visitors-geo/' . MonsterInsights()->auth->get_referral_url() . $this->get_ga_report_range( $data['data'] ), 'referrals' => 'https://analytics.google.com/analytics/web/#report/trafficsources-referrals/' . MonsterInsights()->auth->get_referral_url() . $this->get_ga_report_range( $data['data'] ), 'topposts' => 'https://analytics.google.com/analytics/web/#/report/content-pages/' . MonsterInsights()->auth->get_referral_url() . $this->get_ga_report_range( $data['data'] ), ); } return $data; } }
[-] index.php
[edit]
[+]
..
[-] overview.php
[edit]
[-] abstract-report.php
[edit]