PluginProbe ʕ •ᴥ•ʔ
ShareThis Dashboard for Google Analytics / 2.5.2
ShareThis Dashboard for Google Analytics v2.5.2
3.3.2 trunk 1.0.7 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2.5 2.3.5 2.3.6 2.3.7 2.3.8 2.4.0 2.4.1 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 3.0.0 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.3.0 3.3.1
googleanalytics / view / templates / exclusions.php
googleanalytics / view / templates Last commit date
sidebar 4 years ago appearance.php 5 years ago date_custom_range_filter.php 4 years ago demo-popup.php 5 years ago demographic-chart.php 4 years ago demographic.php 5 years ago exclusions.php 5 years ago gdpr-config.php 4 years ago gdpr.php 5 years ago purposes.php 5 years ago
exclusions.php
55 lines
1 <?php
2 /**
3 * Configure tool template for gdpr onboarding
4 */
5 ?>
6 <div class="vendor-exclusion">
7 <div class="vendor-table">
8 <div class="st-box ">
9 <div class="vendor-table-header">
10 <div class="vendor-name">
11 <h3>
12 <?php esc_html_e('Vendor names', 'googleanalytics'); ?>
13 </h3>
14 <div class="st-input vendor-search">
15 <input autocomplete="off" id="vendor-search " placeholder="Search for vendor" type="text">
16 </div>
17 </div>
18 </div>
19 <p class="vendor-info">
20 <?php esc_html_e('Manage third-party vendors asking for consent across your sites.', 'sharethis-share-buttons'); ?>
21 </p>
22 </div>
23 <div class="vendor-table-body">
24 <?php foreach ($vendors as $vendor ) : ?>
25 <div class="vendor-table-cell">
26 <a name="<?php echo strtolower(esc_html($vendor['name'])); ?>"></a>
27 <a name="<?php echo strtolower(esc_html(explode(' ', $vendor['name'])[0])); ?>"></a>
28 <div class="vendor-table-cell-wrapper switch">
29 <label>
30 <input data-id="<?php echo esc_attr($vendor['id']); ?>" type="checkbox" name="vendor[<?php echo esc_attr($vendor['id']); ?>]" value="consent" />
31 <span class="lever"></span>
32 <strong><?php echo esc_html($vendor['name']); ?></strong>
33 </label>
34 <div class="vendor-accor">
35 <p>
36 <strong><?php esc_html_e('Privacy Policy: ', 'sharethis-share-buttons'); ?></strong>
37 <?php echo '<a href="' . $vendor['policyUrl'] . '" target="_blank">' .
38 $vendor['policyUrl'] . '</a>'; ?>
39 </p>
40 <p>
41 <strong><?php esc_html_e('Purposes: ', 'sharethis-share-buttons'); ?></strong>
42 <div class="vendor-purpose-list">
43 <?php foreach ($vendor['purposes'] as $purpose) : ?>
44 <p><?php echo esc_html($purposes[$purpose]); ?></p>
45 <?php endforeach; ?>
46 </div>
47 </p>
48 </div>
49 </div>
50 </div>
51 <?php endforeach; ?>
52 </div>
53 </div>
54 </div>
55