File: /datos/www/expodubai/wp-content/plugins/modern-events-calendar-lite/app/addons/elementor.php
<?php
/** no direct access **/
defined('MECEXEC') or die();
/**
* Webnus MEC elementor addon class
* @author Webnus <[email protected]>
*/
class MEC_addon_elementor extends MEC_base
{
/**
* @var MEC_factory
*/
public $factory;
/**
* @var MEC_main
*/
public $main;
/**
* Constructor method
* @author Webnus <[email protected]>
*/
public function __construct()
{
// MEC Factory class
$this->factory = $this->getFactory();
// MEC Main class
$this->main = $this->getMain();
}
/**
* Initialize the Elementor addon
* @author Webnus <[email protected]>
*/
public function init()
{
// Elementor is not installed
if(!did_action('elementor/loaded')) return false;
add_action('elementor/widgets/widgets_registered', array($this, 'register_shortcode'));
add_action( 'elementor/preview/enqueue_styles', function() {
wp_enqueue_style( 'mec-elementor-owl-carousel-css', plugins_url( '../../assets/packages/owl-carousel/owl.carousel.min.css', __FILE__ ), array() );
wp_enqueue_style( 'mec-elementor-frontend-css', plugins_url( '../../assets/css/frontend.css', __FILE__ ), array() );
});
add_action('elementor/editor/after_enqueue_scripts', function() {
wp_enqueue_script('mec-elementor-owl-carousel-js', plugin_dir_url( __FILE__ ) . '../../assets/packages/owl-carousel/owl.carousel.min.js');
wp_enqueue_script('mec-elementor-frontend-js', plugin_dir_url( __FILE__ ) . '../../assets/js/frontend.js');
});
return true;
}
/**
* Register MEC Elementor Shortcode
* @author Webnus <[email protected]>
*/
public function register_shortcode()
{
require_once MEC_ABSPATH.'app/addons/elementor/shortcode.php';
\Elementor\Plugin::instance()->widgets_manager->register_widget_type(new \Elementor\MEC_addon_elementor_shortcode());
}
/**
* Register the addon in Elementor
* @author Webnus <[email protected]>
*/
public function map()
{
}
}