Your IP : 3.138.86.166


Current Path : /home/church/www/launch100ar.com/wp-content/plugins/elementor-pro/modules/gallery/
Upload File :
Current File : /home/church/www/launch100ar.com/wp-content/plugins/elementor-pro/modules/gallery/module.php

<?php

namespace ElementorPro\Modules\Gallery;

use Elementor\Controls_Manager;
use Elementor\Element_Base;
use Elementor\Element_Column;
use Elementor\Element_Section;
use ElementorPro\Base\Module_Base;
use ElementorPro\Plugin;

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

class Module extends Module_Base {
	/**
	 * Get module name.
	 *
	 * Retrieve the module name.
	 *
	 * @since  2.7.0
	 * @access public
	 *
	 * @return string Module name.
	 */
	public function get_name() {
		return 'gallery';
	}

	public function get_widgets() {
		return [
			'gallery',
		];
	}
}