????

Your IP : 3.141.104.233


Current Path : /proc/self/cwd/wp-content/plugins/presto-player/inc/Integrations/Elementor/
Upload File :
Current File : //proc/self/cwd/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() );
	}
}