| 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 |
|