File "html.php"
Full Path: /www/wwwroot/shphe-en.com/wp-content/plugins/bb-plugin/modules/html/html.php
File size: 1007 B
MIME-type: --
Charset: utf-8
<?php
/**
* @class FLHtmlModule
*/
class FLHtmlModule extends FLBuilderModule {
/**
* @method __construct
*/
public function __construct()
{
parent::__construct(array(
'name' => __('HTML源码', 'fl-builder'),
'description' => __('Display raw HTML code.', 'fl-builder'),
'category' => __('基本模块', 'fl-builder'),
'partial_refresh' => true
));
}
}
/**
* 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' => '19',
'preview' => array(
'type' => 'text',
'selector' => '.fl-html'
)
)
)
)
)
)
));