<?php
ct_add_custom_widget(
array(
'name' => 'ct_link',
'title' => esc_html__('Case Links', 'itfirm'),
'icon' => 'eicon-editor-link',
'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' => 'menu_item',
'label' => esc_html__('Item', 'itfirm'),
'type' => \Elementor\Controls_Manager::REPEATER,
'controls' => array(
array(
'name' => 'text',
'label' => esc_html__('Text', 'itfirm'),
'type' => \Elementor\Controls_Manager::TEXT,
'label_block' => true,
),
array(
'name' => 'link',
'label' => esc_html__('Link', 'itfirm'),
'type' => \Elementor\Controls_Manager::URL,
'label_block' => true,
),
array(
'name' => 'ct_icon',
'label' => esc_html__('Icon', 'itfirm' ),
'type' => \Elementor\Controls_Manager::ICONS,
'fa4compatibility' => 'icon',
),
),
'title_field' => '{{{ text }}}',
),
array(
'name' => 'style',
'label' => esc_html__('Style', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'default' => 'Default',
'style1' => 'Style 1',
'style2' => 'Style 2',
],
'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',
],
'justify' => [
'title' => esc_html__( 'Justified', 'itfirm' ),
'icon' => 'eicon-text-align-justify',
],
],
'selectors' => [
'{{WRAPPER}} .ct-link1' => 'text-align: {{VALUE}};',
],
),
array(
'name' => 'link_color',
'label' => esc_html__('Link Color', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .ct-link1 a' => 'color: {{VALUE}};',
],
),
array(
'name' => 'link_color_hover',
'label' => esc_html__('Link Color Hover', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .ct-link1 a:hover' => 'color: {{VALUE}};',
],
),
array(
'name' => 'menu_typography',
'label' => esc_html__('Link Typography', 'itfirm' ),
'type' => \Elementor\Group_Control_Typography::get_type(),
'control_type' => 'group',
'selector' => '{{WRAPPER}} .ct-link1 a',
),
array(
'name' => 'item_space',
'label' => esc_html__('Item Spacer', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'control_type' => 'responsive',
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 300,
],
],
'selectors' => [
'{{WRAPPER}} .ct-link1.style2 .ct-link-items li + li' => 'margin-top: {{SIZE}}{{UNIT}} !important;',
],
),
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' => 300,
],
],
'selectors' => [
'{{WRAPPER}} .ct-link1 a i' => 'font-size: {{SIZE}}{{UNIT}};',
],
),
array(
'name' => 'icon_spacer',
'label' => esc_html__('Icon Spacer', 'itfirm' ),
'type' => \Elementor\Controls_Manager::DIMENSIONS,
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .ct-link1 a i' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
'control_type' => 'responsive',
),
array(
'name' => 'ct_animate',
'label' => esc_html__('Case Animate', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => itfirm_animate(),
'default' => '',
),
),
),
),
),
),
get_template_directory() . '/elementor/core/widgets/'
);