HEX
Server: LiteSpeed
System: Linux venus 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
User: axxoncom (1007)
PHP: 8.3.19
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/axxoncom/public_html/wp-content/plugins/wp-statistics/views/pages/referrals/overview.php
<?php

use WP_Statistics\Components\View;
use WP_STATISTICS\Helper;
use WP_STATISTICS\Menus;

?>

<div class="metabox-holder wps-referral-overview wps-google-search">
    <div class="postbox-container" id="wps-postbox-container-1">

        <?php
            $metrics = [
                [
                    'label'  => esc_html__('Referred Visitors', 'wp-statistics'),
                    'value'  => Helper::formatNumberWithUnit($data['summary']['visitors']['value']),
                    'change' => $data['summary']['visitors']['change']
                ],
                [
                    'label'      => esc_html__('Top Referrer', 'wp-statistics'),
                    'link-href'  => !empty($data['summary']['referrer']) ? esc_url($data['summary']['referrer']) : null,
                    'link-title' => $data['summary']['referrer'] ?? null
                ],
                [
                    'label' => esc_html__('Top Country', 'wp-statistics'),
                    'value' => $data['summary']['country'] ?? null
                ],
                [
                    'label' => esc_html__('Top Browser', 'wp-statistics'),
                    'value' => $data['summary']['browser'] ?? null
                ],
                [
                    'label' => esc_html__('Top Search Engine', 'wp-statistics'),
                    'value' => $data['summary']['search_engine'] ?? null
                ],
                [
                    'label' => esc_html__('Top Social Media', 'wp-statistics'),
                    'value' => $data['summary']['social_media'] ?? null
                ]
            ];

            $metrics = apply_filters('wp_statistics_referrals_overview_glance_metrics', $metrics);

            View::load("components/objects/glance-card", ['metrics' => $metrics]);
        ?>
        <div class="wps-card">
            <div class="wps-card__title">
                <h2><?php esc_html_e('Top Referrers', 'wp-statistics') ?></h2>
            </div>
            <?php View::load("components/tables/top-referrers", ['data' => $data['referrers']]); ?>
            <div class="wps-card__footer">
                <div class="wps-card__footer__more">
                    <a class="wps-card__footer__more__link" href="<?php echo Menus::admin_url('referrals', ['tab' => 'referrers']) ?>">
                        <?php esc_html_e('View Referrers', 'wp-statistics') ?>
                    </a>
                </div>
            </div>
        </div>

        <?php
        View::load("components/charts/horizontal-bar", [
            'title'     => esc_html__('Top Countries', 'wp-statistics'),
            'unique_id' => 'referral-top-countries'
        ]);

        View::load("components/charts/horizontal-bar", [
            'title'     => esc_html__('Top Browsers', 'wp-statistics'),
            'unique_id' => 'referral-top-browser'
        ]);

        View::load("components/charts/horizontal-bar", [
            'title'     => esc_html__('Device Type', 'wp-statistics'),
            'unique_id' => 'referral-device-type'
        ]);
        ?>
    </div>
    <div class="postbox-container" id="wps-postbox-container-2">
        <?php
        View::load("components/charts/top-referrer", [
            'title'     => esc_html__('Referred Visitors', 'wp-statistics'),
            'unique_id' => 'referralVisitorChart',
        ]);
        ?>

        <?php do_action('wp_statistics_referrals_overview_source_categories_widget'); ?>

        <?php
        View::load("components/charts/top-referrer", [
            'title'        => esc_html__('Top Search Engines', 'wp-statistics'),
            'unique_id'    => 'referral-search-engines-chart',
            'footer_title' => esc_html__('View Search Engines', 'wp-statistics'),
            'footer_link'  => Menus::admin_url('referrals', ['tab' => 'search-engines'])
        ]);

            do_action('wp_statistics_referrals_overview_gsc_widgets');

            View::load("components/charts/top-referrer", [
                'title'        => esc_html__('Top Social Media', 'wp-statistics'),
                'unique_id'    => 'referral-social-media-chart',
                'footer_title' => esc_html__('View Social Media', 'wp-statistics'),
                'footer_link'  => Menus::admin_url('referrals', ['tab' => 'social-media'])
            ]);
        ?>

        <?php do_action('wp_statistics_referrals_overview_entry_pages_widget'); ?>

        <div class="wps-card">
            <div class="wps-card__title">
                <h2><?php esc_html_e('Latest Referrals', 'wp-statistics') ?></h2>
            </div>
            <?php
            View::load("components/tables/latest-referrals", ['visitors' => $data['visitors']]);
            ?>
            <div class="wps-card__footer">
                <div class="wps-card__footer__more">
                    <a class="wps-card__footer__more__link" href="<?php echo Menus::admin_url('referrals', ['tab' => 'referred-visitors']) ?>">
                        <?php esc_html_e('View Referred Visitors', 'wp-statistics') ?>
                    </a>
                </div>
            </div>
        </div>
    </div>
</div>