PluginProbe ʕ •ᴥ•ʔ
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / 4.3.2
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode v4.3.2
4.7.2 4.7.1 trunk 2.3.0 2.4.0 2.4.1 2.4.2 2.5.0 3.0.0 3.0.1 3.1.0 3.10.0 3.10.1 3.11.1 3.11.2 3.11.3 3.2.0 3.3.0 3.3.1 3.4.0 3.4.1 3.4.2 3.5.0 3.6.0 3.6.1 3.6.2 3.6.5 3.6.6 3.7.0 3.7.1 3.8.0 3.9.0 4.0.0 4.0.1 4.0.2 4.0.3 4.1.0 4.1.1 4.2.0 4.2.1 4.2.10 4.2.11 4.2.12 4.2.13 4.2.14 4.2.2 4.2.3 4.2.4 4.2.5 4.2.6 4.2.7 4.2.8 4.2.9 4.3.0 4.3.1 4.3.10 4.3.11 4.3.12 4.3.2 4.3.3 4.3.4 4.3.5 4.3.6 4.3.7 4.3.7.1 4.3.8 4.3.9 4.3.9.1 4.4.0 4.4.1 4.4.2 4.5.0 4.5.1 4.5.10 4.5.11 4.5.2 4.5.3 4.5.4 4.5.5 4.5.6 4.5.7 4.5.8 4.5.9 4.6.0 4.6.1 4.6.2 4.6.3 4.6.4 4.6.5 4.6.6 4.6.7 4.7.0
cookiebot / src / view / admin / settings / iab-page.php
cookiebot / src / view / admin / settings Last commit date
multiple-configuration 3 years ago prior-consent 2 years ago dashboard-page.php 2 years ago debug-page.php 3 years ago gcm-page.php 3 years ago gtm-page.php 3 years ago iab-page.php 2 years ago legislations-page.php 3 years ago network-settings-page.php 2 years ago settings-page.php 2 years ago support-page.php 2 years ago
iab-page.php
62 lines
1 <?php
2 /**
3 * @var bool $cookiebot_iab
4 * @var string $cookiebot_tcf_version
5 */
6 ?>
7 <div class="cb-settings__config__item">
8 <div class="cb-settings__config__content">
9 <h3 class="cb-settings__config__subtitle"><?php esc_html_e( 'IAB Integration:', 'cookiebot' ); ?></h3>
10 <p class="cb-general__info__text">
11 <?php esc_html_e( 'If you want to use the IAB Framework TCF within your Consent Management Platform (CMP) you can enable it on the right. Be aware that activating this could override some of the configurations you made with the default setup defined by the IAB.', 'cookiebot' ); ?>
12 </p>
13 <a href="https://support.cookiebot.com/hc/en-us/articles/360007652694-Cookiebot-and-the-IAB-Consent-Framework"
14 target="_blank" class="cb-btn cb-link-btn" rel="noopener">
15 <?php esc_html_e( 'Read more on IAB with Cookiebot CMP here', 'cookiebot' ); ?>
16 </a>
17 </div>
18 <div class="cb-settings__config__data">
19 <div class="cb-settings__config__data__inner">
20 <label class="switch-checkbox" for="cookiebot-iab">
21 <input type="checkbox" name="cookiebot-iab" id="cookiebot-iab" value="1"
22 <?php checked( 1, $cookiebot_iab ); ?>>
23 <div class="switcher"></div>
24 <?php esc_html_e( 'IAB TCF integration', 'cookiebot' ); ?>
25 </label>
26 </div>
27 </div>
28 </div>
29
30 <div class="cb-settings__config__item"<?php echo ( $cookiebot_iab ) ? '' : ' style="display: none"'; ?>>
31 <div class="cb-settings__config__content">
32 <h3 class="cb-settings__config__subtitle"><?php esc_html_e( 'TCF version:', 'cookiebot' ); ?></h3>
33 <p class="cb-general__info__text">
34 <?php esc_html_e( 'In May 2023 The Interactive Advertising Bureau (IAB) announced the latest version of its Transparency and Consent Framework (TCF), or TCF v2.2, which must be implemented by all consent management platforms (CMPs) by November 20, 2023. We will migrate you automatically on November 20,2023, but we recommend to do it manually before. To manually switch the version before please select it on the right.', 'cookiebot' ); ?>
35 </p>
36 </div>
37 <div class="cb-settings__config__data">
38 <div class="cb-settings__config__data__inner">
39 <h3 class="cb-settings__data__subtitle">
40 <?php esc_html_e( 'Select the TCF Version below', 'cookiebot' ); ?>
41 </h3>
42 <label>
43 <input <?php checked( 'IAB', $cookiebot_tcf_version ); ?>
44 class="tcf-option"
45 type="radio"
46 name="cookiebot-tcf-version"
47 value="IAB"/>
48 <?php esc_html_e( 'TCF 2.0', 'cookiebot' ); ?>
49 </label>
50 <label class="recommended-item">
51 <input <?php checked( 'TCFv2.2', $cookiebot_tcf_version ); ?>
52 class="tcf-option"
53 type="radio"
54 name="cookiebot-tcf-version"
55 value="TCFv2.2"/>
56 <?php esc_html_e( 'TCF 2.2', 'cookiebot' ); ?>
57 <span class="recommended-tag"><?php esc_html_e( 'New', 'cookiebot' ); ?></span>
58 </label>
59 </div>
60 </div>
61 </div>
62