PluginProbe ʕ •ᴥ•ʔ
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / 4.1.1
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode v4.1.1
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 / gtm-page.php
cookiebot / src / view / admin / settings Last commit date
prior-consent 4 years ago debug-page.php 4 years ago gtm-page.php 4 years ago iab-page.php 4 years ago legislations-page.php 4 years ago network-settings-page.php 4 years ago settings-page.php 4 years ago support-page.php 4 years ago
gtm-page.php
72 lines
1 <div class="wrap">
2 <h1><?php esc_html_e( 'Google Tag Manager', 'cookiebot' ); ?></h1>
3
4 <form method="post" action="options.php" class="form_gtm">
5 <?php settings_fields( 'cookiebot-gtm' ); ?>
6 <?php do_settings_sections( 'cookiebot-gtm' ); ?>
7
8 <p><?php esc_html_e( 'Enable GTM', 'cookiebot' ); ?></p>
9 <div class="GTM_check">
10 <input
11 type="checkbox"
12 name="cookiebot-gtm"
13 id="cookiebot-gtm"
14 value="1" <?php checked( 1, get_option( 'cookiebot-gtm' ) ); ?>>
15 <p>
16 <?php
17 esc_html_e(
18 'For more details about Cookiebot and Google Tag Manager click',
19 'cookiebot'
20 );
21 ?>
22 <a
23 target="_blank"
24 href="https://www.cookiebot.com/en/google-tag-manager-and-gdpr-compliance-with-cookiebot/">
25 &nbsp;<?php esc_html_e( 'here', 'cookiebot' ); ?>
26 </a>
27 </p>
28 </div>
29
30 <p><?php esc_html_e( 'GTM ID', 'cookiebot' ); ?></p>
31 <input
32 type="text"
33 name="cookiebot-gtm-id"
34 id="cookiebot-gtm-id"
35 value="<?php echo esc_html( get_option( 'cookiebot-gtm-id' ) ); ?>">
36
37 <p><?php esc_html_e( 'DataLayer name', 'cookiebot' ); ?></p>
38 <div>
39 <input
40 type="text"
41 name="cookiebot-data-layer"
42 id="data_layer"
43 placeholder="dataLayer"
44 value="<?php echo esc_html( get_option( 'cookiebot-data-layer' ) ); ?>">
45 <p style="margin: 0;"><?php esc_html_e( 'Optional, only change if necessary', 'cookiebot' ); ?></p>
46 </div>
47
48 <p><?php esc_html_e( 'Google Consent Mode', 'cookiebot' ); ?></p>
49 <div class="GTM_check">
50 <input
51 type="checkbox"
52 name="cookiebot-gcm"
53 id="gcm"
54 value="1" <?php checked( 1, get_option( 'cookiebot-gcm' ) ); ?>>
55 <p>
56 <?php
57 esc_html_e(
58 'For more details about Cookiebot and Google Consent Mode click',
59 'cookiebot'
60 );
61 ?>
62 <a
63 target="_blank"
64 href="https://support.cookiebot.com/hc/en-us/articles/360016047000-Cookiebot-and-Google-Consent-Mode">
65 &nbsp;<?php esc_html_e( 'here', 'cookiebot' ); ?>
66 </a>
67 </p>
68 </div>
69 <input type="submit" value="Save" name="gtm_save" id="gtm_save">
70 </form>
71 </div>
72