<?php
ct_add_custom_widget(
array(
'name' => 'ct_list',
'title' => esc_html__('Case Lists', 'consultio'),
'icon' => 'eicon-editor-list-ul',
'categories' => array(Case_Theme_Core::CT_CATEGORY_NAME),
'params' => array(
'sections' => array(
array(
'name' => 'section_list',
'label' => esc_html__('Content', 'consultio'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'style',
'label' => esc_html__('Layout', 'consultio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'style1' => 'Style 1',
'style2' => 'Style 2',
'style3' => 'Style 3',
'style4' => 'Style 4',
'style5' => 'Style 5',
'style6' => 'Style 6',
'style7' => 'Style 7',
],
'default' => 'style1',
),
array(
'name' => 'column',
'label' => esc_html__('Column', 'consultio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'tow-column' => '2 Column',
'one-column' => '1 Column',
],
'default' => 'tow-column',
'condition' => [
'style' => 'style2',
],
),
array(
'name' => 'list',
'label' => esc_html__('List', 'consultio'),
'type' => \Elementor\Controls_Manager::REPEATER,
'controls' => array(
array(
'name' => 'content',
'label' => esc_html__('Content', 'consultio'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'label_block' => true,
),
array(
'name' => 'link',
'label' => esc_html__('Link', 'consultio'),
'type' => \Elementor\Controls_Manager::URL,
'label_block' => true,
),
),
'title_field' => '{{{ content }}}',
),
array(
'name' => 'ct_animate',
'label' => esc_html__('Case Animate', 'consultio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => consultio_animate(),
'default' => '',
),
array(
'name' => 'ct_animate_delay',
'label' => esc_html__('Animate Delay', 'consultio' ),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => '0',
'description' => 'Enter number. Default 0ms',
),
),
),
array(
'name' => 'style_section',
'label' => esc_html__('Style', 'consultio' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'description_color',
'label' => esc_html__('Content Color', 'consultio' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .ct-list .ct-list-item .ct-list-desc' => 'color: {{VALUE}};',
],
),
array(
'name' => 'description_typography',
'label' => esc_html__('Content Typography', 'consultio' ),
'type' => \Elementor\Group_Control_Typography::get_type(),
'control_type' => 'group',
'selector' => '{{WRAPPER}} .ct-list .ct-list-item .ct-list-desc',
),
array(
'name' => 'icon_color',
'label' => esc_html__('Icon Color', 'consultio' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .ct-list.style1 .ct-list-icon i' => 'color: {{VALUE}};background-image: none;text-fill-color: inherit;-webkit-text-fill-color: inherit;',
],
'condition' => [
'style' => ['style1'],
],
),
array(
'name' => 'icon_space_right',
'label' => esc_html__('Icon Right Spacer', 'consultio' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'control_type' => 'responsive',
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 300,
],
],
'selectors' => [
'{{WRAPPER}} .ct-list.style1 .ct-list-icon' => 'margin-right: {{SIZE}}{{UNIT}};',
],
'condition' => [
'style' => ['style1'],
],
),
array(
'name' => 'icon_space_top',
'label' => esc_html__('Icon Top Spacer', 'consultio' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'control_type' => 'responsive',
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 300,
],
],
'selectors' => [
'{{WRAPPER}} .ct-list.style1 .ct-list-icon' => 'margin-top: {{SIZE}}{{UNIT}};',
],
'condition' => [
'style' => ['style1'],
],
),
array(
'name' => 'item_space',
'label' => esc_html__('Item Spacer', 'consultio' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'control_type' => 'responsive',
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 300,
],
],
'selectors' => [
'{{WRAPPER}} .ct-list .ct-list-item + .ct-list-item' => 'margin-top: {{SIZE}}{{UNIT}};',
],
),
),
),
),
),
),
get_template_directory() . '/elementor/core/widgets/'
);