| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/fe2tech/wp-content/themes/contio/elementor/core/register/ |
Upload File : |
<?php
// Register Icon Box Widget
ct_add_custom_widget(
array(
'name' => 'ct_fancy_box',
'title' => esc_html__('Fancy Box', 'contio' ),
'icon' => 'eicon-icon-box',
'categories' => array( Case_Theme_Core::CT_CATEGORY_NAME ),
'scripts' => array(
),
'params' => array(
'sections' => array(
array(
'name' => 'layout_section',
'label' => esc_html__('Layout', 'contio' ),
'tab' => \Elementor\Controls_Manager::TAB_LAYOUT,
'controls' => array(
array(
'name' => 'layout',
'label' => esc_html__('Templates', 'contio' ),
'type' => Case_Theme_Core::LAYOUT_CONTROL,
'default' => '1',
'options' => [
'1' => [
'label' => esc_html__('Layout 1', 'contio' ),
'image' => get_template_directory_uri() . '/elementor/templates/widgets/ct_fancy_box/layout-image/layout1.jpg'
],
'2' => [
'label' => esc_html__('Layout 2', 'contio' ),
'image' => get_template_directory_uri() . '/elementor/templates/widgets/ct_fancy_box/layout-image/layout2.jpg'
],
],
),
array(
'name' => 'style',
'label' => esc_html__('Style', 'contio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'style1' => 'Style 1',
'style2' => 'Style 2',
],
'default' => 'style1',
'condition' => [
'layout' => '1',
],
),
),
),
array(
'name' => 'section_content',
'label' => esc_html__('Content', 'contio' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'icon_type',
'label' => esc_html__('Icon Type', 'contio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'icon' => 'Icon',
'image' => 'Image',
],
'default' => 'icon',
),
array(
'name' => 'selected_icon',
'label' => esc_html__('Icon', 'contio' ),
'type' => \Elementor\Controls_Manager::ICONS,
'fa4compatibility' => 'icon',
'condition' => [
'icon_type' => 'icon',
],
),
array(
'name' => 'icon_image',
'label' => esc_html__( 'Icon Image', 'contio' ),
'type' => \Elementor\Controls_Manager::MEDIA,
'description' => esc_html__('Select image icon.', 'contio'),
'condition' => [
'icon_type' => 'image',
],
),
array(
'name' => 'title_text',
'label' => esc_html__('Title', 'contio' ),
'type' => \Elementor\Controls_Manager::TEXT,
'placeholder' => esc_html__('Enter your title', 'contio' ),
'label_block' => true,
),
array(
'name' => 'description_text',
'label' => esc_html__('Description', 'contio' ),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => esc_html__('Enter your description', 'contio' ),
'rows' => 10,
'show_label' => false,
),
array(
'name' => 'ct_animate',
'label' => esc_html__('Case Animate', 'contio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => contio_animate(),
'default' => '',
),
),
),
),
),
),
get_template_directory() . '/elementor/core/widgets/'
);