sidebar
2 months ago
appearance.php
2 months ago
date-custom-range-filter.php
2 months ago
demo-popup.php
2 months ago
demographic-chart.php
2 months ago
demographic.php
2 months ago
exclusions.php
2 months ago
ga4-dashboard.php
2 months ago
ga4-demographic-chart.php
2 months ago
gdpr-config.php
2 months ago
gdpr.php
2 months ago
purposes.php
2 months ago
appearance.php
25 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Appearance view. |
| 4 | * |
| 5 | * @package GoogleAnalytics |
| 6 | */ |
| 7 | |
| 8 | if (!defined('ABSPATH')) exit; |
| 9 | |
| 10 | ?> |
| 11 | <div class="col-md-12"> |
| 12 | <h3><?php echo esc_html__( 'Form Color', 'googleanalytics' ); ?></h3> |
| 13 | </div> |
| 14 | |
| 15 | <div id="sharethis-form-color" class="col-md-12"> |
| 16 | <?php foreach ( $colors as $color ) : ?> |
| 17 | <div class="color<?php echo esc_attr( isset( $gdpr_config['color'] ) && $color === $gdpr_config['color'] ? ' selected' : '' ); ?>" |
| 18 | data-value="<?php echo esc_attr( $color ); ?>" |
| 19 | style="max-width: 30px; max-height: 30px; overflow: hidden;" |
| 20 | > |
| 21 | <span style="content: ' '; background-color:<?php echo esc_attr( $color ); ?>; padding: 40px;"></span> |
| 22 | </div> |
| 23 | <?php endforeach; ?> |
| 24 | </div> |
| 25 |