timeline
6 months ago
rows.blade.php
2 weeks ago
table-heading.blade.php
6 months ago
table.blade.php
4 months ago
timeline.blade.php
1 week ago
visitor-page.blade.php
2 weeks ago
visitor-page.blade.php
18 lines
| 1 | @php |
| 2 | /** @var string $title */ |
| 3 | /** @var string $rows */ |
| 4 | /** @var ?int $session_id */ |
| 5 | @endphp |
| 6 | |
| 7 | <div id="report-header-container" class="report-header-container"> |
| 8 | <div id="report-title-bar" class="report-title-bar overview-report"> |
| 9 | <div class="primary-report-title-container"> |
| 10 | <h1 class="report-title"><?php echo esc_html($title); ?></h1> |
| 11 | </div> |
| 12 | </div> |
| 13 | </div> |
| 14 | |
| 15 | <div class="journeys journeys-for-single-visitor" data-session-to-highlight="<?php echo is_int($session_id) ? $session_id : '' ?>"> |
| 16 | <?php echo $rows; // This output is escaped in journeys.rows.blade.php?> |
| 17 | </div> |
| 18 |