|
1
|
<?php |
|
2
|
|
|
3
|
|
|
4
|
namespace RT\ThePostGrid\Controllers; |
|
5
|
|
|
6
|
|
|
7
|
use RT\ThePostGrid\Widgets\TPGWidget; |
|
8
|
|
|
9
|
class WidgetController { |
|
10
|
function __construct() { |
|
11
|
add_action( 'widgets_init', [ $this, 'initWidget' ] ); |
|
12
|
} |
|
13
|
|
|
14
|
function initWidget() { |
|
15
|
register_widget( TPGWidget::class ); |
|
16
|
} |
|
17
|
}
|