HEX
Server: LiteSpeed
System: Linux altar40.supremepanel40.com 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
User: sescorpcl (4477)
PHP: 8.2.32
Disabled: NONE
Upload Files
File: /home/sescorpcl/public_html/wp-content/plugins/bb-booster/modules/map/map.php
<?php

/**
 * @class FLMapModule
 */
class FLMapModule extends FLBuilderModule {

	/** 
	 * @method __construct
	 */  
	public function __construct()
	{
		parent::__construct(array(
			'name'          	=> __('Map', 'bb-booster'),
			'description'   	=> __('Display a Google map.', 'bb-booster'),
			'category'      	=> __('Advanced Modules', 'bb-booster'),
			'partial_refresh'	=> true
		));
	}
}

/**
 * Register the module and its form settings.
 */
FLBuilder::register_module('FLMapModule', array(
	'general'       => array(
		'title'         => __('General', 'bb-booster'),
		'sections'      => array(
			'general'       => array(
				'title'         => '',
				'fields'        => array(
					'address'       => array(
						'type'          => 'text',
						'label'         => __('Address', 'bb-booster'),
						'placeholder'   => __('1865 Winchester Blvd #202 Campbell, CA 95008', 'bb-booster'),
						'preview'         => array(
							'type'            => 'refresh'
						)
					),
					'height'        => array(
						'type'          => 'text',
						'label'         => __('Height', 'bb-booster'),
						'default'       => '400',
						'size'          => '5',
						'description'   => 'px'
					)
				)
			)
		)
	)
));