?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/demo1/wp-content/plugins/elementor-pro/modules/carousel/



?? Go up: /home/webdevt/www/demo1/wp-content/plugins/elementor-pro/modules

?? Viewing: module.php

<?php
namespace ElementorPro\Modules\Carousel;

use ElementorPro\Base\Module_Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

class Module extends Module_Base {

	public function get_widgets() {
		return [
			'Media_Carousel',
			'Testimonial_Carousel',
			'Reviews',
		];
	}

	public function get_name() {
		return 'carousel';
	}
}


??

??