PluginProbe ʕ •ᴥ•ʔ
ShareThis Dashboard for Google Analytics / 2.5.1
ShareThis Dashboard for Google Analytics v2.5.1
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 / gdpr.php
googleanalytics / view / templates Last commit date
sidebar 5 years ago appearance.php 5 years ago demo-popup.php 5 years ago demographic-chart.php 5 years ago demographic.php 5 years ago exclusions.php 5 years ago gdpr-config.php 5 years ago gdpr.php 5 years ago purposes.php 5 years ago
gdpr.php
20 lines
1 <?php if(empty($gdpr_config)) : ?>
2 <tr valign="top">
3 <th scope="row"><?php esc_html_e('Enable GDPR Consent Management Tool', 'googleanalytics'); ?>:</th>
4 </tr>
5 <tr valign="top">
6 <?php if ( Ga_Helper::are_features_enabled() ) : ?>
7 <td>
8 <button class="gdpr-enable"><?php esc_html_e('Enable'); ?></button>
9 </td>
10 <?php else : ?>
11 <td>
12 <label class="<?php echo ( ! Ga_Helper::are_features_enabled() ) ? 'label-grey ga-tooltip' : '' ?>">
13 <button class="gdpr-enable" disabled="disabled"><?php esc_html_e('Enable'); ?></button>
14 <span class="ga-tooltiptext ga-tt-abs"><?php _e( $tooltip ); ?></span>
15 </label>
16 </td>
17 <?php endif; ?>
18 </tr>
19 <?php endif; ?>
20