File "module.php"

Full Path: /home/bytebmoc/tideswithin.com/GeoBlockList/block-library/formidable-forms/module.php
File size: 374 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace ElementPack\Modules\FormidableForms;

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 'formidable-forms';
	}

	public function get_widgets() {

		$widgets = ['Formidable_Forms'];

		return $widgets;
	}
}