PluginProbe ʕ •ᴥ•ʔ
Independent Analytics – WordPress Analytics Plugin / 2.15.0
Independent Analytics – WordPress Analytics Plugin v2.15.0
2.15.0 2.14.10 trunk 1.1 1.10 1.10.1 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.17.1 1.17.2 1.17.3 1.17.4 1.18 1.18.1 1.19.0 1.19.1 1.2 1.20.0 1.21.0 1.22.0 1.22.1 1.23.0 1.23.1 1.24.0 1.24.1 1.25.0 1.25.1 1.26.0 1.27.0 1.28.0 1.28.1 1.28.2 1.28.3 1.29.0 1.3 1.30.0 1.30.1 1.4 1.5 1.6 1.7 1.8 1.9 2.0.0 2.0.1 2.1.4 2.1.5 2.1.6 2.10.0 2.10.1 2.10.2 2.10.3 2.10.4 2.11.0 2.11.1 2.11.10 2.11.2 2.11.3 2.11.4 2.11.5 2.11.6 2.11.7 2.11.8 2.11.9 2.12.0 2.12.1 2.12.2 2.13.1 2.13.2 2.13.5 2.13.6 2.14.0 2.14.1 2.14.2 2.14.4 2.14.6 2.14.7 2.14.8 2.14.9 2.2.0 2.2.1 2.3.1 2.3.2 2.4.2 2.4.3 2.5.0 2.5.1 2.6.0 2.6.1 2.6.2 2.6.3 2.6.4 2.7.0 2.7.1 2.7.2 2.7.3 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.8.9 2.9.2 2.9.3 2.9.4 2.9.5 2.9.6 2.9.7
independent-analytics / views / partials / sidebar-menu-section.blade.php
independent-analytics / views / partials Last commit date
filter-column-select.blade.php 11 months ago interrupt-header.blade.php 11 months ago report-header.blade.php 3 days ago sidebar-menu-section.blade.php 3 days ago sidebar.blade.php 3 days ago
sidebar-menu-section.blade.php
60 lines
1 @php /** @var \IAWP\Env $env */ @endphp
2 @php /** @var string $report_name */ @endphp
3 @php /** @var string $report_type */ @endphp
4 @php /** @var bool $can_edit_settings */ @endphp
5 @php /** @var bool $supports_saved_reports */ @endphp
6 @php /** @var bool $external */ @endphp
7 @php /** @var bool $upgrade */ @endphp
8 @php /** @var \IAWP\Report[] $reports */ @endphp
9
10 <div class="menu-section <?php echo esc_attr($report_type); ?> <?php echo $env->is_currently_viewed($report_type) ? 'current' : ''; ?> <?php echo $reports == null ? 'no-sub-items' : ''; ?> <?php echo $upgrade ? 'upgrade' : ''; ?> <?php echo $external ? 'external' : ''; ?>">
11 <span class="collapsed-icon" data-testid="collapsed-icon-<?php echo esc_attr($report_type); ?>"><?php
12 echo iawp_render('icons.' . $report_type); ?>
13 </span>
14 <div class="report-inner">
15 <h3 class="report-name <?php echo (!$upgrade && $env->is_favorite($report_type)) ? 'favorite' : '' ; ?>"
16 data-report-type="<?php echo esc_attr($report_type); ?>">
17 <span class="icon-container">
18 <span class="report-icon"><?php
19 echo iawp_render('icons.' . $report_type); ?>
20 </span>
21 </span>
22 <a href="<?php echo esc_url($url) ?>"
23 data-testid="menu-link-<?php echo esc_attr($report_type); ?>"
24 >
25 <?php echo esc_html($report_name); ?>
26 </a><?php
27 if ($upgrade) : ?>
28 <span class="pro-label">Pro</span><?php
29 endif;
30 if ($supports_saved_reports && $can_edit_settings) : ?>
31 <button class="add-new-report" data-controller="create-report"
32 data-action="create-report#create"
33 data-create-report-type-value="<?php echo esc_attr($report_type); ?>"
34 data-testid="add-new-report-<?php echo esc_attr($report_type); ?>"><span
35 class="dashicons dashicons-plus-alt2"></span></button><?php
36 endif; ?>
37 </h3><?php
38 if ($reports != null) : ?>
39 <ol data-controller="<?php echo $can_edit_settings ? "sortable-reports" : "" ; ?>"
40 data-sortable-reports-type-value="<?php echo esc_attr($report_type); ?>"><?php
41 foreach ($reports as $report) : ?>
42 <li data-report-id="<?php echo esc_attr($report->id()); ?>"
43 class="<?php echo $report->is_current() ? 'current' : ''; ?> <?php echo $report->is_favorite() ? 'favorite' : '' ; ?>">
44 <a href="<?php echo esc_url($report->url()); ?>"
45 data-name-for-report-id="<?php echo esc_attr($report->id()); ?>"
46 data-testid="menu-link-<?php echo esc_attr(sanitize_title($report->name())); ?>"><?php echo esc_html($report->name()); ?></a>
47 </li><?php
48 endforeach; ?>
49 </ol><?php
50 endif; ?>
51 </div>
52 <a class="overlay-link" href="<?php echo esc_url($url); ?>" <?php echo $external ? 'target="_blank"' : '' ?>></a><?php
53 if ($collapsed_label) : ?>
54 <span class="collapsed-label">
55 <a href="<?php echo esc_url($url); ?>" <?php echo $external ? 'target="_blank"' : ''; ?>><?php
56 echo esc_html($collapsed_label) . ' ' . ($external ? '<span class="dashicons dashicons-external"></span>' : ''); ?>
57 </a>
58 </span><?php
59 endif; ?>
60 </div>