
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' );

/**
 * Configuration for shortcode: html
 */

$design_options_params = us_config( 'elements_design_options' );
$hover_options_params = us_config( 'elements_hover_options' );

/**
 * @return array
 */
return array(
	'title' => __( 'Custom HTML', 'us' ),
	'icon' => 'fas fa-code',
	'params' => us_set_params_weight(

		// General section
		array(
			'content' => array(
				'description' => sprintf( __( 'Added content will be displayed inside the %s block', 'us' ), '<code>&lt;div class="w-html"&gt;&lt;/div&gt;</code>' ),
				'type' => 'html',
				'encoded' => TRUE,
				'std' => base64_encode( '<p>I am raw html block.<br/>Click edit button to change this html</p>' ),
				'usb_preview' => TRUE,
			),
		),

		$design_options_params,
		$hover_options_params
	),
);
