click.blade.php
6 months ago
order.blade.php
6 months ago
origin.blade.php
6 months ago
submission.blade.php
6 months ago
view.blade.php
6 months ago
view.blade.php
24 lines
| 1 | @php |
| 2 | /** @var IAWP\Journey\Events\View $event */ |
| 3 | @endphp |
| 4 | |
| 5 | <?php if($event->url()): ?> |
| 6 | <p> |
| 7 | <span class="timeline-contents-label"><?php esc_html_e('Page:', 'independent-analytics'); ?></span> |
| 8 | <a href="<?php echo esc_url($event->url()); ?>" target="_blank"> |
| 9 | <?php esc_html_e($event->title()) ?><span class="dashicons dashicons-external"></span> |
| 10 | </a> |
| 11 | </p> |
| 12 | <?php else: ?> |
| 13 | <p> |
| 14 | <span class="timeline-contents-label"><?php esc_html_e('Page:', 'independent-analytics'); ?></span> |
| 15 | <?php echo esc_html($event->title()); ?> |
| 16 | </p> |
| 17 | <?php endif; ?> |
| 18 | <?php if($event->duration()): ?> |
| 19 | <p> |
| 20 | <span class="timeline-contents-label"><?php esc_html_e('Duration:', 'independent-analytics'); ?></span> |
| 21 | <?php echo esc_html($event->duration()); ?> |
| 22 | </p> |
| 23 | <?php endif; ?> |
| 24 |