PluginProbe ʕ •ᴥ•ʔ
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / 4.5.9
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode v4.5.9
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 / common / support-page.php
cookiebot / src / view / admin / common Last commit date
prior-consent 1 year ago templates 1 year ago dashboard-page-old.php 1 year ago dashboard-page-session-expired.php 1 year ago dashboard-page-static.php 1 year ago dashboard-page.php 1 year ago dashboard-trial-expired.php 1 year ago network-settings-page.php 1 year ago settings-page.php 1 year ago support-page.php 1 year ago
support-page.php
77 lines
1 <?php
2 /**
3 * @var string $debug_output
4 */
5
6 use cybot\cookiebot\lib\Cookiebot_Frame;
7 use cybot\cookiebot\settings\templates\Header;
8 use cybot\cookiebot\settings\templates\Main_Tabs;
9
10 $header = new Header();
11 $main_tabs = new Main_Tabs();
12
13 $header->display();
14 ?>
15 <div class="cb-body">
16 <div class="cb-wrapper">
17 <?php $main_tabs->display( 'support' ); ?>
18 <div class="cb-main__content">
19 <h1 class="cb-main__page_title"><?php esc_html_e( 'Support', 'cookiebot' ); ?></h1>
20
21 <div class="cb-support__content">
22 <div class="cb-support__info__card">
23 <h2 class="cb-support__info__title"><?php esc_html_e( 'Having trouble or need help?', 'cookiebot' ); ?></h2>
24 <p class="cb-support__info__text">
25 <?php
26 esc_html_e(
27 'Need help? Visit our Support Center for answers.',
28 'cookiebot'
29 );
30 echo '<br>';
31 esc_html_e(
32 'Still stuck? Click',
33 'cookiebot'
34 );
35 echo '<strong> ';
36 esc_html_e(
37 'Submit a request',
38 'cookiebot'
39 );
40 echo ' </strong>';
41 esc_html_e(
42 'in the top-right corner of the Support Center page.',
43 'cookiebot'
44 );
45 echo '<br>';
46 esc_html_e(
47 'Please include your debug info so we can help faster.',
48 'cookiebot'
49 );
50 ?>
51 </p>
52 </div>
53
54 <div class="cb-debug__support__card">
55 <a href="https://usercentricsforwordpress.zendesk.com/hc/en-us" target="_blank" class="cb-btn cb-main-btn" style="border: 3px solid #1032cf"
56 rel="noopener">
57 <?php esc_html_e( 'Visit Support Center', 'cookiebot' ); ?>
58 </a>
59 <a href="#" onclick="copyDebugInfo();" class="cb-btn cb-secondary-btn" style="margin-left: 20px;">
60 <?php esc_html_e( 'Copy Debug Info', 'cookiebot' ); ?>
61 </a>
62 </div>
63 </div>
64
65 <div class="cb-debug__code__container">
66 <textarea
67 cols="50"
68 rows="40"
69 id="cookiebot-debug-info"
70 readonly="readonly"
71 ><?php echo esc_textarea( $debug_output ); ?></textarea>
72 </div>
73
74 </div>
75 </div>
76 </div>
77