File: /home/parhudrw/public_html/wp-content/plugins/around-elementor/modules/carousel/module.php
<?php
namespace AroundElementor\Modules\Carousel;
use AroundElementor\Base\Module_Base;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class Module extends Module_Base {
public function get_widgets() {
return [
'Posts_Carousel',
'Posts_Without_Image_Carousel',
'Hero_Image_Carousel',
'Testimonial_Carousel',
'Project_Carousel',
'Offers_Carousel',
'Icons_Carousel',
];
}
public function get_name() {
return 'ar-carousel';
}
}