<?php use WP_STATISTICS\Country; use WP_STATISTICS\Menus; use WP_Statistics\Components\View; ?> <?php if (!empty($data)) : ?> <div class="o-table-wrapper"> <table width="100%" class="o-table wps-new-table"> <thead> <tr> <th class="wps-pd-l"><?php esc_html_e('Country', 'wp-statistics'); ?></th> <th class="wps-pd-l"><span class="wps-order"><?php esc_html_e('Visitors', 'wp-statistics'); ?></span></th> </tr> </thead> <tbody> <?php foreach ($data as $item) : if ($item->country == Country::$unknown_location) { continue; } ?> <tr> <td class="wps-pd-l"> <div class="wps-country-flag wps-ellipsis-parent"> <img src="<?php echo esc_url(Country::flag($item->country)) ?>" title="<?php echo esc_attr(Country::getName($item->country)) ?>" class="wps-flag wps-flag--first"> <span class="wps-ellipsis-text" title="<?php echo esc_attr(Country::getName($item->country)) ?>"><?php echo esc_html(Country::getName($item->country)) ?></span> </div> </td> <td class="wps-pd-l wps-middle-vertical"><a href="<?php echo Menus::admin_url('visitors', ['location' => $item->country, 'from' => $filters['date']['from'], 'to' => $filters['date']['to']]) ?>" target="_blank"><?php echo esc_html($item->visitors) ?></a></td> </tr> <?php endforeach; ?> </tbody> </table> </div> <?php else : ?> <?php View::load("components/objects/no-data", [ 'url' => WP_STATISTICS_URL . 'assets/images/no-data/vector-3.svg', 'title' => __('Data coming soon!', 'wp-statistics') ]); ?> <?php endif; ?>
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
about.php | File | 3.5 KB | 0644 |
|
action-button.php | File | 398 B | 0644 |
|
currently-online.php | File | 4.45 KB | 0644 |
|
daily-traffic-trend.php | File | 572 B | 0644 |
|
global-visitor-distribution.php | File | 417 B | 0644 |
|
go-premium.php | File | 1.96 KB | 0644 |
|
horizontal-bar.php | File | 492 B | 0644 |
|
latest-visitor.php | File | 4.06 KB | 0644 |
|
metabox-skeleton.php | File | 181 B | 0644 |
|
most-active-visitors.php | File | 4.11 KB | 0644 |
|
most-visited-pages.php | File | 3.08 KB | 0644 |
|
pages-visitors-preview.php | File | 1.04 KB | 0644 |
|
search_engines.php | File | 574 B | 0644 |
|
top-countries.php | File | 1.88 KB | 0644 |
|
top-referring.php | File | 1.62 KB | 0644 |
|
traffic-overview.php | File | 8.3 KB | 0644 |
|
traffic-summary.php | File | 2.35 KB | 0644 |
|