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 / dashboard-page-static.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
dashboard-page-static.php
60 lines
1 <?php
2
3 use cybot\cookiebot\lib\Cookiebot_WP;
4 use cybot\cookiebot\settings\templates\Header;
5 use cybot\cookiebot\settings\templates\Main_Tabs;
6
7 /**
8 * @var array $template_args Array containing all template variables
9 */
10
11 $header = new Header();
12 $main_tabs = new Main_Tabs();
13
14 $header->display();
15 ?>
16
17 <div class="cb-body">
18 <div class="cb-wrapper">
19 <?php $main_tabs->display( 'dashboard' ); ?>
20
21 <div class="dashboard-grid has-cbid">
22 <!-- Main Content Area -->
23 <div class="dashboard-grid-row">
24 <div class="gray-box">
25 <div class="header-section-no-margin">
26 <img src="<?php echo \esc_url( CYBOT_COOKIEBOT_PLUGIN_URL . 'assets/img/icons/set-up-icon.svg' ); ?>" alt="Usercentrics Logo">
27 <h1><?php echo \esc_html__( 'Your Consent Management Platform', 'cookiebot' ); ?></h1>
28 </div>
29 <div class="header-section">
30 <p class="subtitle">
31 <?php echo esc_html__( 'Set up your consent banner in seconds with easy auto-setup, smart data processing services detection, and consent-first blocking for automated privacy compliance.', 'cookiebot' ); ?>
32 </p>
33 </div>
34
35 <div class="banner-preview-container">
36 <div class="banner-images">
37 <?php
38 $banner1_url = CYBOT_COOKIEBOT_PLUGIN_URL . 'assets/img/banner-getting-started1.png';
39 $banner2_url = CYBOT_COOKIEBOT_PLUGIN_URL . 'assets/img/banner-getting-started2.png';
40 ?>
41 <img src="<?php echo \esc_url( $banner1_url ); ?>"
42 alt="Banner Preview 1"
43 class="banner-image">
44 <img src="<?php echo \esc_url( $banner2_url ); ?>"
45 alt="Banner Preview 2"
46 class="banner-image">
47 </div>
48 </div>
49
50 <div class="banner-actions">
51 <button class="cb-btn cb-primary-btn" id="get-started-button-static-dashboard">
52 <?php echo esc_html__( 'Login to continue', 'cookiebot' ); ?>
53 </button>
54 </div>
55 </div>
56 </div>
57 </div>
58 </div>
59 </div>
60