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