PluginProbe ʕ •ᴥ•ʔ
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / 4.5.11
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode v4.5.11
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 10 months ago dashboard-page-old.php 1 year ago dashboard-page-session-expired.php 10 months ago dashboard-page-static.php 10 months ago dashboard-page.php 10 months ago dashboard-trial-expired.php 10 months ago network-settings-page.php 10 months ago settings-page.php 1 year ago support-page.php 1 year ago
dashboard-page-static.php
61 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 use function cybot\cookiebot\lib\asset_url;
7
8 /**
9 * @var array $template_args Array containing all template variables
10 */
11
12 $header = new Header();
13 $main_tabs = new Main_Tabs();
14
15 $header->display();
16 ?>
17
18 <div class="cb-body">
19 <div class="cb-wrapper">
20 <?php $main_tabs->display( 'dashboard' ); ?>
21
22 <div class="dashboard-grid has-cbid">
23 <!-- Main Content Area -->
24 <div class="dashboard-grid-row">
25 <div class="gray-box">
26 <div class="header-section-no-margin">
27 <img src="<?php echo \esc_url( asset_url( 'img/icons/set-up-icon.svg' ) ); ?>" alt="Usercentrics Logo">
28 <h1><?php echo \esc_html__( 'Your Consent Management Platform', 'cookiebot' ); ?></h1>
29 </div>
30 <div class="header-section">
31 <p class="subtitle">
32 <?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' ); ?>
33 </p>
34 </div>
35
36 <div class="banner-preview-container">
37 <div class="banner-images">
38 <?php
39 $banner1_url = asset_url( 'img/banner-getting-started1.png' );
40 $banner2_url = asset_url( 'img/banner-getting-started2.png' );
41 ?>
42 <img src="<?php echo \esc_url( $banner1_url ); ?>"
43 alt="Banner Preview 1"
44 class="banner-image">
45 <img src="<?php echo \esc_url( $banner2_url ); ?>"
46 alt="Banner Preview 2"
47 class="banner-image">
48 </div>
49 </div>
50
51 <div class="banner-actions">
52 <button class="cb-btn cb-primary-btn" id="get-started-button-static-dashboard">
53 <?php echo esc_html__( 'Login to continue', 'cookiebot' ); ?>
54 </button>
55 </div>
56 </div>
57 </div>
58 </div>
59 </div>
60 </div>
61