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
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 |