__( 'HTML', 'fl-builder' ), 'description' => __( 'Display raw HTML code.', 'fl-builder' ), 'category' => __( 'Basic', 'fl-builder' ), 'partial_refresh' => true, 'icon' => 'editor-code.svg', )); } } /** * Register the module and its form settings. */ FLBuilder::register_module('FLHtmlModule', array( 'general' => array( 'title' => __( 'General', 'fl-builder' ), 'sections' => array( 'general' => array( 'title' => '', 'fields' => array( 'html' => array( 'type' => 'code', 'editor' => 'html', 'label' => '', 'rows' => '18', 'preview' => array( 'type' => 'text', 'selector' => '.fl-html', ), 'connections' => array( 'html', 'string', 'url' ), ), ), ), ), ), ));