PluginProbe ʕ •ᴥ•ʔ
Independent Analytics – WordPress Analytics Plugin / 2.11.1
Independent Analytics – WordPress Analytics Plugin v2.11.1
2.15.5 2.15.4 2.15.3 2.15.2 2.15.1 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
email-course-ad.blade.php 1 year ago filter-column-select.blade.php 2 years ago interrupt-header.blade.php 2 years ago report-header.blade.php 2 years ago sidebar-menu-section.blade.php 1 year ago sidebar.blade.php 1 year ago
sidebar-menu-section.blade.php
65 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 {{$report_type}} {{$env->is_currently_viewed($report_type) ? 'current' : ''}} {{$reports == null ? 'no-sub-items' : ''}} {{$upgrade ? 'upgrade' : ''}} {{$external ? 'external' : ''}}">
11 <span class="collapsed-icon" data-testid="collapsed-icon-<?php echo esc_attr($report_type); ?>">
12 <?php
13 echo iawp_blade()->run('icons.' . $report_type); ?>
14 </span>
15 <div class="report-inner">
16 <h3 class="report-name {{ (!$upgrade && $env->is_favorite($report_type)) ? 'favorite' : '' }}"
17 data-report-type="{{$report_type}}">
18 <span class="icon-container">
19 <span class="report-icon">
20 <?php
21 echo iawp_blade()->run('icons.' . $report_type); ?>
22 </span>
23 </span>
24 <a href="<?php echo esc_attr($url) ?>"
25 data-testid="menu-link-<?php echo esc_attr($report_type); ?>"
26 >
27 {{$report_name}}
28 </a>
29 @if($upgrade)
30 <span class="pro-label">Pro</span>
31 @endif
32 @if($supports_saved_reports && $can_edit_settings)
33 <button class="add-new-report" data-controller="create-report"
34 data-action="create-report#create"
35 data-create-report-type-value="<?php echo esc_attr($report_type); ?>"
36 data-testid="add-new-report-<?php echo esc_attr($report_type); ?>"><span
37 class="dashicons dashicons-plus-alt2"></span></button>
38 @endif
39 </h3>
40 @if($reports != null)
41 <ol data-controller="{{ $can_edit_settings ? "sortable-reports" : "" }}"
42 data-sortable-reports-type-value="<?php echo esc_attr($report_type); ?>">
43 @foreach($reports as $report)
44 <li data-report-id="{{$report->id()}}"
45 class="{{$report->is_current() ? 'current' : ''}} {{$report->is_favorite() ? 'favorite' : '' }}">
46 <a href="{{$report->url()}}"
47 data-name-for-report-id="{{$report->id()}}"
48 data-testid="menu-link-<?php echo esc_attr(sanitize_title($report->name())); ?>">{{$report->name()}}</a>
49 </li>
50 @endforeach
51 </ol>
52 @endif
53 </div>
54 <a class="overlay-link" href="<?php echo esc_url($url); ?>" <?php
55 echo $external ? 'target="_blank"' : '' ?>></a>
56 @if($collapsed_label)
57 <span class="collapsed-label">
58 <a href="<?php echo esc_url($url); ?>" <?php
59 echo $external ? 'target="_blank"' : ''; ?>>
60 <?php
61 echo $collapsed_label; echo $external ? '<span class="dashicons dashicons-external"></span>' : ''; ?>
62 </a>
63 </span>
64 @endif
65 </div>