Elementor.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | namespace PrestoPlayer\Integrations\Elementor; |
| 4 | |
| 5 | class Elementor |
| 6 | { |
| 7 | public function register() |
| 8 | { |
| 9 | add_action('elementor/widgets/register', [$this, 'widget']); |
| 10 | } |
| 11 | |
| 12 | public function widget($widgets_manager) |
| 13 | { |
| 14 | $widgets_manager->register(new ReusableVideoWidget()); |
| 15 | } |
| 16 | } |
| 17 |