<?php
ct_add_custom_widget(
array(
'name' => 'ct_icon',
'title' => esc_html__('Case Icons', 'itfirm'),
'icon' => 'eicon-alert',
'categories' => array(Case_Theme_Core::CT_CATEGORY_NAME),
'params' => array(
'sections' => array(
array(
'name' => 'section_icon',
'label' => esc_html__('Icons', 'itfirm'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'icons',
'label' => esc_html__('Icons', 'itfirm'),
'type' => \Elementor\Controls_Manager::REPEATER,
'controls' => array(
array(
'name' => 'icon_type',
'label' => esc_html__('Icon Type', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'icon' => 'Icon',
'image' => 'Image',
],
'default' => 'icon',
),
array(
'name' => 'icon_image',
'label' => esc_html__( 'Icon Image', 'itfirm' ),
'type' => \Elementor\Controls_Manager::MEDIA,
'description' => esc_html__('Select image icon.', 'itfirm'),
'condition' => [
'icon_type' => 'image',
],
),
array(
'name' => 'ct_icon',
'label' => esc_html__('Icon', 'itfirm' ),
'type' => \Elementor\Controls_Manager::ICONS,
'fa4compatibility' => 'icon',
'default' => [
'value' => 'fas fa-star',
'library' => 'fa-solid',
],
'condition' => [
'icon_type' => 'icon',
],
),
array(
'name' => 'icon_link',
'label' => esc_html__('Icon Link', 'itfirm'),
'type' => \Elementor\Controls_Manager::URL,
'label_block' => true,
),
array(
'name' => 'icon_color_item',
'label' => esc_html__( 'Icon Color Item', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .ct-icon1 {{CURRENT_ITEM}}' => 'color: {{VALUE}};',
],
),
),
),
array(
'name' => 'style',
'label' => esc_html__('Style', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'style1' => 'Default',
'style2' => 'Outline Box',
],
'default' => 'style1',
),
array(
'name' => 'align',
'label' => esc_html__( 'Alignment', 'itfirm' ),
'type' => \Elementor\Controls_Manager::CHOOSE,
'control_type' => 'responsive',
'options' => [
'left' => [
'title' => esc_html__( 'Left', 'itfirm' ),
'icon' => 'eicon-text-align-left',
],
'center' => [
'title' => esc_html__( 'Center', 'itfirm' ),
'icon' => 'eicon-text-align-center',
],
'right' => [
'title' => esc_html__( 'Right', 'itfirm' ),
'icon' => 'eicon-text-align-right',
],
],
'selectors' => [
'{{WRAPPER}} .ct-icon1' => 'text-align: {{VALUE}};',
],
),
array(
'name' => 'icon_color',
'label' => esc_html__( 'Icon Color', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .ct-icon1 a' => 'color: {{VALUE}};',
],
),
array(
'name' => 'icon_color_hover',
'label' => esc_html__( 'Icon Color Hover', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .ct-icon1 a:hover' => 'color: {{VALUE}};',
],
),
array(
'name' => 'icon_typography',
'label' => esc_html__('Icon Typography', 'itfirm' ),
'type' => \Elementor\Group_Control_Typography::get_type(),
'control_type' => 'group',
'selector' => '{{WRAPPER}} .ct-icon1 a i',
),
array(
'name' => 'icon_space',
'label' => esc_html__('Icon Spacer', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'control_type' => 'responsive',
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 300,
],
],
'selectors' => [
'{{WRAPPER}} .ct-icon1 a + a' => 'margin-left: {{SIZE}}{{UNIT}};',
],
),
),
),
),
),
),
get_template_directory() . '/elementor/core/widgets/'
);