STRATO-apps/wordpress_03/app/wp-content/plugins/bdthemes-element-pack/modules/lightbox/module.php

SHA-256: 90f726bb21ddf42272509cc5f5eb6cf43ee9cf96bc5f2ae0d5ac18c20831003b
<?php
namespace ElementPack\Modules\Lightbox;

use ElementPack\Base\Element_Pack_Module_Base;

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

class Module extends Element_Pack_Module_Base {

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

	public function get_widgets() {

		$widgets = [
			'Lightbox',
		];

		return $widgets;
	}
}