PluginProbe ʕ •ᴥ•ʔ
ShareThis Dashboard for Google Analytics / 3.2.4
ShareThis Dashboard for Google Analytics v3.2.4
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 / sidebar / gdpr-ad.php
googleanalytics / view / templates / sidebar Last commit date
demo-ad.php 3 years ago gdpr-ad.php 3 years ago
gdpr-ad.php
81 lines
1 <?php
2 /**
3 * Template for GDPR side bar ad in settings page.
4 *
5 * @package GoogleAnalytics
6 */
7
8 ?>
9 <div class="sidebar-ad">
10 <div id="gdpr-ad">
11 <h2 style="text-decoration: underline;">
12 <?php esc_html_e( 'Check out our new GDPR Compliance Tool!', 'googleanalytics' ); ?>
13 </h2>
14 <div class="row">
15 <div class="col-md-12">
16 <img width="600px;" src="<?php echo esc_url( $plugin_uri . 'assets/images/gdpr-ex.png' ); ?>" />
17 </div>
18 <div class="col-md-6">
19 <h3><?php esc_html_e( 'Confirm Consent', 'googleanalytics' ); ?></h3>
20 <p>
21 <?php
22 esc_html_e(
23 'A simple and streamlined way to confirm a user’s initial acceptance or rejection of cookie collection',
24 'googleanalytics'
25 );
26 ?>
27 </p>
28 </div>
29 <div class="col-md-6">
30 <h3><?php esc_html_e( 'Select Purpose', 'googleanalytics' ); ?></h3>
31 <p>
32 <?php
33 esc_html_e(
34 'A transparent system of verifying the intent of collecting a user’s cookies, and giving the option to opt in or out',
35 'googleanalytics'
36 );
37 ?>
38 </p>
39 </div>
40 </div>
41 <div class="row">
42 <div class="col-md-6">
43 <h3><?php esc_html_e( 'Indicate Company', 'googleanalytics' ); ?></h3>
44 <p>
45 <?php
46 esc_html_e(
47 'A comprehensive record of company-level information that allows users to monitor and control the recipients of cookie collection',
48 'googleanalytics'
49 );
50 ?>
51 </p>
52 </div>
53 <div class="col-md-6">
54 <h3><?php esc_html_e( 'Access Data Rights', 'googleanalytics' ); ?></h3>
55 <p>
56 <?php
57 esc_html_e(
58 'A centralized database where users can review the latest privacy policies and information pertaining to their cookie collection',
59 'googleanalytics'
60 );
61 ?>
62 </p>
63 </div>
64 </div>
65 <div class="row register-section">
66 <?php if ( true === Ga_Helper::are_features_enabled() ) : ?>
67 <td>
68 <button class="gdpr-enable"><?php esc_html_e( 'Enable', 'googleanalytics' ); ?></button>
69 </td>
70 <?php else : ?>
71 <td>
72 <label class="<?php echo esc_attr( false === Ga_Helper::are_features_enabled() ? 'label-grey ga-tooltip' : '' ); ?>">
73 <button class="gdpr-enable" disabled="disabled"><?php esc_html_e( 'Enable', 'googleanalytics' ); ?></button>
74 <span class="ga-tooltiptext ga-tt-abs"><?php echo esc_html( $tooltip ); ?></span>
75 </label>
76 </td>
77 <?php endif; ?>
78 </div>
79 </div>
80 </div>
81