PluginProbe
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant / 2.2.6
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant v2.2.6
2.3.1 2.3.0 2.2.8 2.2.7 trunk 1.10.0 1.10.1 1.10.2 1.10.3 1.10.4 1.10.5 1.11.0 1.11.1 1.11.2 1.6 1.7 1.8 1.8.1 1.8.2 1.8.3 1.9.0 1.9.1 1.9.10 1.9.11 1.9.12 All 59 releases
merchant / admin / components / analytics-overview.php

analytics-overview.php in Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant 2.2.6, at admin/components/analytics-overview.php

33 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if ( ! defined( 'ABSPATH' ) ) {
4 exit; // Exit if accessed directly
5 }
6 /**
7 * @var $overview_data array Overview data.
8 */
9
10 $date_ranges = $overview_data['date_ranges'];
11 ?>
12 <div class="merchant-analytics-overview-section" data-action="<?php echo esc_attr( $overview_data['action'] ) ?>">
13 <div class="overview-head">
14 <div class="head-wrapper">
15 <div class="title">
16 <span class="title-text"><?php echo esc_html( $overview_data['section_title'] ); ?></span>
17 </div>
18 <div class="date-range">
19 <span class="merchant-analytics-loading-spinner"></span>
20 <span class="second-date-range" data-title="<?php echo esc_attr__( 'Date:', 'merchant' ); ?>">
21 <input type="text" class="date-range-input" readonly value="<?php echo esc_attr( implode( ' - ', array_values( $date_ranges['recent_period'] ) ) ); ?>" placeholder="<?php esc_attr_e( 'Date range', 'merchant' ); ?>">
22 </span>
23 <span class="compare-text"><?php esc_html_e( 'comparing to', 'merchant' ); ?></span>
24 <span class="first-date-range first-date-range-analytics-overview">
25 <input type="text" class="date-range-input" readonly value="<?php echo esc_attr( implode( ' - ', array_values( $date_ranges['last_period'] ) ) ); ?>" placeholder="<?php esc_attr_e( 'Date range', 'merchant' ); ?>">
26 </span>
27 </div>
28 </div>
29 </div>
30 <div class="overview-cards">
31 <?php require_once MERCHANT_DIR . 'admin/components/analytics-overview-cards.php'; ?>
32 </div>
33 </div>