Form.php
11 months ago
Init.php
5 years ago
TabbedWidget.php
4 years ago
TabbedWidgetDependency.php
1 year ago
UserPanel.php
2 years ago
index.php
5 years ago
Init.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | namespace ProfilePress\Core\Widgets; |
| 4 | |
| 5 | class Init |
| 6 | { |
| 7 | public static function init() |
| 8 | { |
| 9 | add_action('widgets_init', function () { |
| 10 | register_widget(__NAMESPACE__ . '\Form'); |
| 11 | register_widget(__NAMESPACE__ . '\TabbedWidget'); |
| 12 | register_widget(__NAMESPACE__ . '\UserPanel'); |
| 13 | }); |
| 14 | } |
| 15 | } |