click-tracking
11 months ago
date-picker
5 months ago
email
9 months ago
examiner
11 months ago
icons
6 months ago
integrations
11 months ago
interrupt
11 months ago
journeys
6 months ago
notices
6 months ago
overview
6 months ago
partials
5 months ago
settings
5 months ago
tables
6 months ago
campaign-builder.blade.php
11 months ago
chart.blade.php
11 months ago
debug.blade.php
11 months ago
plugin-group-options.blade.php
11 months ago
quick-stat-loading.blade.php
11 months ago
quick-stat.blade.php
5 months ago
quick-stats.blade.php
11 months ago
real-time.blade.php
6 months ago
support.blade.php
6 months ago
updates.blade.php
6 months ago
woocommerce-order-meta-box.blade.php
6 months ago
quick-stat.blade.php
27 lines
| 1 | <div class="iawp-stat <?php echo esc_attr($id); ?> <?php echo $is_visible ? 'visible' : ''; ?>" |
| 2 | data-id="<?php echo esc_attr($id); ?>" data-quick-stats-target="quickStat"> |
| 3 | <div class="metric"> |
| 4 | <span class="metric-name"><?php echo esc_html($name); ?></span> |
| 5 | <?php if(!is_null($icon)) : ?> |
| 6 | <span class="plugin-label"><?php echo iawp_icon($icon); ?></span> |
| 7 | <?php endif; ?> |
| 8 | </div> |
| 9 | <div class="values"> |
| 10 | <span class="count" |
| 11 | test-value="<?php echo esc_attr(strip_tags($formatted_value)); ?>"> |
| 12 | <?php echo wp_kses($formatted_value, ['span' => []]); |
| 13 | if (!is_null($formatted_unfiltered_value)) : ?> |
| 14 | <span class="unfiltered"> / <?php echo wp_kses($formatted_unfiltered_value, ['span' => []]); ?></span> |
| 15 | <?php endif; ?> |
| 16 | </span> |
| 17 | </div> |
| 18 | <span class="growth"> |
| 19 | <span class="percentage <?php echo esc_attr($growth_html_class); ?>" |
| 20 | test-value="<?php echo esc_attr($growth); ?>"> |
| 21 | <span class="dashicons dashicons-arrow-up-alt growth-arrow"></span> |
| 22 | <?php echo esc_html($formatted_growth); ?> |
| 23 | </span> |
| 24 | <span class="period-label"><?php echo esc_html__('vs. previous period', 'independent-analytics'); ?></span> |
| 25 | </span> |
| 26 | </div> |
| 27 |