????

Your IP : 3.21.43.104


Current Path : /home/webcloude/www/wp-content/plugins/presto-player/inc/Integrations/Elementor/
Upload File :
Current File : /home/webcloude/www/wp-content/plugins/presto-player/inc/Integrations/Elementor/Elementor.php

<?php

namespace PrestoPlayer\Integrations\Elementor;

class Elementor {

	public function register() {
		add_action( 'elementor/widgets/register', array( $this, 'widget' ) );
	}

	public function widget( $widgets_manager ) {
		$widgets_manager->register( new ReusableVideoWidget() );
	}
}