PluginProbe
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / 4.7.3
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode v4.7.3
4.7.3 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 All 93 releases
cookiebot / src / lib / Widgets.php

Widgets.php in Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode 4.7.3, at src/lib/Widgets.php

20 lines 473 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace cybot\cookiebot\lib;
4
5 use cybot\cookiebot\widgets\Cookiebot_Declaration_Widget;
6 use cybot\cookiebot\widgets\Dashboard_Widget_Cookiebot_Status;
7
8 class Widgets {
9
10 public function register_hooks() {
11 // Loading widgets
12 add_action( 'widgets_init', array( $this, 'register_widgets' ) );
13 ( new Dashboard_Widget_Cookiebot_Status() )->register_hooks();
14 }
15
16 public function register_widgets() {
17 register_widget( Cookiebot_Declaration_Widget::class );
18 }
19 }
20