<?php
ct_add_custom_widget(
array(
'name' => 'ct_list',
'title' => esc_html__('Case Lists', 'itfirm'),
'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', 'itfirm'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'selected_icon',
'label' => esc_html__('Icon', 'itfirm' ),
'type' => \Elementor\Controls_Manager::ICONS,
'fa4compatibility' => 'icon',
),
array(
'name' => 'list',
'label' => esc_html__('List', 'itfirm'),
'type' => \Elementor\Controls_Manager::REPEATER,
'controls' => array(
array(
'name' => 'content',
'label' => esc_html__('Content', 'itfirm'),
'type' => \Elementor\Controls_Manager::TEXT,
'label_block' => true,
),
),
'title_field' => '{{{ content }}}',
),
array(
'name' => 'ct_animate',
'label' => esc_html__('Case Animate', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => itfirm_animate(),
'default' => '',
),
),
),
array(
'name' => 'style_section',
'label' => esc_html__('Style', 'itfirm' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'icon_color',
'label' => esc_html__('Icon Color', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .ct-list .ct-list-icon i' => 'color: {{VALUE}};text-fill-color: {{VALUE}};-webkit-text-fill-color: {{VALUE}};background-image: none;',
],
),
array(
'name' => 'icon_spacing',
'label' => esc_html__('Icon Space Content', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'control_type' => 'responsive',
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 3000,
],
],
'selectors' => [
'{{WRAPPER}} .ct-list .ct-list-item i' => 'margin-right: {{SIZE}}{{UNIT}};',
],
),
array(
'name' => 'icon_font_size',
'label' => esc_html__('Icon Font Size', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'control_type' => 'responsive',
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 3000,
],
],
'selectors' => [
'{{WRAPPER}} .ct-list .ct-list-item i' => 'font-size: {{SIZE}}{{UNIT}};',
],
),
array(
'name' => 'content_color',
'label' => esc_html__('Content Color', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .ct-list .ct-list-content' => 'color: {{VALUE}};',
],
),
array(
'name' => 'content_typography',
'label' => esc_html__('Content Typography', 'itfirm' ),
'type' => \Elementor\Group_Control_Typography::get_type(),
'control_type' => 'group',
'selector' => '{{WRAPPER}} .ct-list .ct-list-content',
),
array(
'name' => 'item_spacing',
'label' => esc_html__('Item Space', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'control_type' => 'responsive',
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 3000,
],
],
'selectors' => [
'{{WRAPPER}} .ct-list .ct-list-item + .ct-list-item' => 'margin-top: {{SIZE}}{{UNIT}};',
],
),
array(
'name' => 'vertical_align',
'label' => esc_html__('Vertical Align', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'control_type' => 'responsive',
'options' => [
'inherit' => 'Default',
'flex-start' => 'Top',
'center' => 'Middle',
'flex-end' => 'Bottom',
],
'default' => 'inherit',
'selectors' => [
'{{WRAPPER}} .ct-list .ct-list-item' => 'align-items: {{VALUE}};',
],
),
),
),
),
),
),
get_template_directory() . '/elementor/core/widgets/'
);