| Server IP : 43.130.17.34 / Your IP : 216.73.217.6 Web Server : nginx/1.28.0 System : Linux VM-4-12-opencloudos 6.6.92-34.1.oc9.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 25 21:32:13 CST 2025 x86_64 User : www ( 1000) PHP Version : 8.0.26 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/yespkg.com/wp-content/plugins/bb-plugin/modules/icon/ |
Upload File : |
<?php
/**
* @class FLIconModule
*/
class FLIconModule extends FLBuilderModule {
/**
* @method __construct
*/
public function __construct()
{
parent::__construct(array(
'name' => __('图标+标题', 'fl-builder'),
'description' => __('Display an icon and optional title.', 'fl-builder'),
'category' => __('图文模块', 'fl-builder'),
'editor_export' => false,
'partial_refresh' => true
));
}
}
/**
* Register the module and its form settings.
*/
FLBuilder::register_module('FLIconModule', array(
'general' => array( // Tab
'title' => __('General', 'fl-builder'), // Tab title
'sections' => array( // Tab Sections
'general' => array( // Section
'title' => '', // Section Title
'fields' => array( // Section Fields
'icon' => array(
'type' => 'icon',
'label' => __('Icon', 'fl-builder')
)
)
),
'link' => array(
'title' => __('Link', 'fl-builder'),
'fields' => array(
'link' => array(
'type' => 'link',
'label' => __('Link', 'fl-builder'),
'preview' => array(
'type' => 'none'
)
),
'link_target' => array(
'type' => 'select',
'label' => __('Link Target', 'fl-builder'),
'default' => '_self',
'options' => array(
'_self' => __('Same Window', 'fl-builder'),
'_blank' => __('New Window', 'fl-builder')
),
'preview' => array(
'type' => 'none'
)
)
)
),
'text' => array(
'title' => 'Text',
'fields' => array(
'text' => array(
'type' => 'editor',
'label' => '',
'media_buttons' => false
)
)
)
)
),
'style' => array( // Tab
'title' => __('Style', 'fl-builder'), // Tab title
'sections' => array( // Tab Sections
'colors' => array( // Section
'title' => __('Colors', 'fl-builder'), // Section Title
'fields' => array( // Section Fields
'color' => array(
'type' => 'color',
'label' => __('Color', 'fl-builder'),
'show_reset' => true
),
'hover_color' => array(
'type' => 'color',
'label' => __('Hover Color', 'fl-builder'),
'show_reset' => true,
'preview' => array(
'type' => 'none'
)
),
'bg_color' => array(
'type' => 'color',
'label' => __('Background Color', 'fl-builder'),
'show_reset' => true
),
'bg_hover_color' => array(
'type' => 'color',
'label' => __('Background Hover Color', 'fl-builder'),
'show_reset' => true,
'preview' => array(
'type' => 'none'
)
),
'three_d' => array(
'type' => 'select',
'label' => __('Gradient', 'fl-builder'),
'default' => '0',
'options' => array(
'0' => __('No', 'fl-builder'),
'1' => __('Yes', 'fl-builder')
)
)
)
),
'structure' => array( // Section
'title' => __('Structure', 'fl-builder'), // Section Title
'fields' => array( // Section Fields
'size' => array(
'type' => 'text',
'label' => __('Size', 'fl-builder'),
'default' => '30',
'maxlength' => '3',
'size' => '4',
'description' => 'px'
),
'align' => array(
'type' => 'select',
'label' => __('Alignment', 'fl-builder'),
'default' => 'left',
'options' => array(
'center' => __('Center', 'fl-builder'),
'left' => __('Left', 'fl-builder'),
'right' => __('Right', 'fl-builder')
)
)
)
),
'r_structure' => array(
'title' => __('Mobile Structure', 'fl-builder'),
'fields' => array(
'r_align' => array(
'type' => 'select',
'label' => __('Alignment', 'fl-builder'),
'default' => 'default',
'options' => array(
'default' => __('Default', 'fl-builder'),
'custom' => __('Custom', 'fl-builder'),
),
'toggle' => array(
'custom' => array(
'fields' => array('r_custom_align')
)
)
),
'r_custom_align' => array(
'type' => 'select',
'label' => __('Custom Alignment', 'fl-builder'),
'default' => 'left',
'options' => array(
'left' => __('Left', 'fl-builder'),
'center' => __('Center', 'fl-builder'),
'right' => __('Right', 'fl-builder')
)
)
)
)
)
)
));