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