File "module.php"

Full Path: /home/ccipcixf/public_html/beta/wp-content/plugins/royal-elementor-addons/modules/theme-builder/woocommerce/product-media/module.php
File size: 479 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace WprAddons\Modules\ThemeBuilder\Woocommerce\ProductMedia;

use WprAddons\Base\Module_Base;

class Module extends Module_Base {

	public function __construct() {
		parent::__construct();

		// This is here for extensibility purposes - go to town and make things happen!
	}
	
	public function get_name() {
		return 'wpr-product-media';
	}

	public function get_widgets() {
		return [
			'Wpr_Product_Media', // This should match the widget/element class.
		];
	}
	
}