<?php
ct_add_custom_widget(
array(
'name' => 'ct_heading',
'title' => esc_html__('Case Heading', 'itfirm' ),
'icon' => 'eicon-heading',
'categories' => array( Case_Theme_Core::CT_CATEGORY_NAME ),
'scripts' => [
'ct-inline-css-js',
],
'params' => array(
'sections' => array(
array(
'name' => 'title_section',
'label' => esc_html__('Title', 'itfirm' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'text_align',
'label' => esc_html__('Alignment', 'itfirm' ),
'type' => \Elementor\Controls_Manager::CHOOSE,
'control_type' => 'responsive',
'options' => [
'left' => [
'title' => esc_html__('Left', 'itfirm' ),
'icon' => 'fa fa-align-left',
],
'center' => [
'title' => esc_html__('Center', 'itfirm' ),
'icon' => 'fa fa-align-center',
],
'right' => [
'title' => esc_html__('Right', 'itfirm' ),
'icon' => 'fa fa-align-right',
],
],
'selectors' => [
'{{WRAPPER}} .ct-heading' => 'text-align: {{VALUE}};',
],
),
array(
'name' => 'h_width',
'label' => esc_html__('Max Width', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'control_type' => 'responsive',
'size_units' => [ 'px', '%' ],
'range' => [
'px' => [
'min' => 0,
'max' => 3000,
],
],
'selectors' => [
'{{WRAPPER}} .ct-heading .ct-heading--inner' => 'max-width: {{SIZE}}{{UNIT}};',
],
),
array(
'name' => 'title',
'label' => esc_html__('Title', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'label_block' => true,
'description' => 'Create highlight text width shortcode: [highlight text="Text Demo"]',
),
array(
'name' => 'title_tag',
'label' => esc_html__('Heading HTML Tag', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'h1' => 'H1',
'h2' => 'H2',
'h3' => 'H3',
'h4' => 'H4',
'h5' => 'H5',
'h6' => 'H6',
'div' => 'div',
'span' => 'span',
'p' => 'p',
],
'default' => 'h3',
),
array(
'name' => 'title_color',
'label' => esc_html__('Title Color', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .ct-heading .item--title' => 'color: {{VALUE}};',
],
),
array(
'name' => 'title_typography',
'label' => esc_html__('Title Typography', 'itfirm' ),
'type' => \Elementor\Group_Control_Typography::get_type(),
'control_type' => 'group',
'selector' => '{{WRAPPER}} .ct-heading .item--title',
),
array(
'name' => 'title_space_bottom',
'label' => esc_html__('Bottom Spacer', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'control_type' => 'responsive',
'size_units' => [ 'px' ],
'default' => [
'size' => 0,
],
'range' => [
'px' => [
'min' => 0,
'max' => 300,
],
],
'selectors' => [
'{{WRAPPER}} .ct-heading .item--title' => 'margin-bottom: {{SIZE}}{{UNIT}};',
],
),
array(
'name' => 'style',
'label' => esc_html__('Style', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'st-default' => 'Default',
'st-line-gr' => 'Line Gradient',
],
'default' => 'st-default',
),
array(
'name' => 'line_color_gr_from',
'label' => esc_html__('Line Gradient Color From', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
'condition' => [
'style' => ['st-line-gr'],
],
),
array(
'name' => 'line_color_gr_to',
'label' => esc_html__('Line Gradient Color To', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
'condition' => [
'style' => ['st-line-gr'],
],
),
array(
'name' => 'highlight_style',
'label' => esc_html__('Text Highlight Style', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'style1' => 'Default',
],
'default' => 'style1',
),
array(
'name' => 'highlight_color',
'label' => esc_html__('Text Highlight Color', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .ct-heading .ct-text-highlight' => 'color: {{VALUE}};',
],
),
array(
'name' => 'highlight_color_gradient',
'label' => esc_html__('Text Highlight Color Gradient', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
),
array(
'name' => 'highlight_image',
'label' => esc_html__( 'Text Highlight Image', 'itfirm' ),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => '',
),
array(
'name' => 'ct_animate',
'label' => esc_html__('Case Animate', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => itfirm_animate_case(),
'default' => '',
),
array(
'name' => 'ct_animate_delay',
'label' => esc_html__('Animate Delay', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => '0',
'description' => 'Enter number. Default 0ms',
),
),
),
array(
'name' => 'sub_title_section',
'label' => esc_html__('Sub Title', 'itfirm' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'condition' => [
'style' => ['st-default'],
],
'controls' => array(
array(
'name' => 'sub_title',
'label' => esc_html__('Sub Title', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXT,
'label_block' => true,
),
array(
'name' => 'sub_title_color',
'label' => esc_html__('Sub Title Color Main', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .ct-heading .item--sub-title' => 'color: {{VALUE}} !important;',
],
),
array(
'name' => 'sub_title_color_gradient',
'label' => esc_html__('Sub Title Color Gradient', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
),
array(
'name' => 'sub_title_typography',
'label' => esc_html__('Sub Title Typography', 'itfirm' ),
'type' => \Elementor\Group_Control_Typography::get_type(),
'control_type' => 'group',
'selector' => '{{WRAPPER}} .ct-heading .item--sub-title',
),
array(
'name' => 'sub_title_space_bottom',
'label' => esc_html__('Bottom Spacer', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'control_type' => 'responsive',
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 300,
],
],
'selectors' => [
'{{WRAPPER}} .ct-heading .item--sub-title' => 'margin-bottom: {{SIZE}}{{UNIT}};',
],
),
array(
'name' => 'sub_title_padding',
'label' => esc_html__('Padding', 'itfirm' ),
'type' => \Elementor\Controls_Manager::DIMENSIONS,
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .ct-heading .item--sub-title span' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
'control_type' => 'responsive',
),
array(
'name' => 'sub_title_style',
'label' => esc_html__('Style', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'style-default' => 'Default',
'style-icon-right' => 'Icon Right',
'style-icon-leftright' => 'Icon Left/Right',
'style-box-gr' => 'Box White - Text Gradient',
'style-line-right' => 'Line Right',
'style-line-leftright' => 'Line Left/Right',
'style-dot-leftright' => 'Dot Left/Right',
],
'default' => 'style-default',
),
array(
'name' => 'sub_line_color',
'label' => esc_html__('Sub Title Line/Dot Color', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .ct-heading .item--sub-title span::before, {{WRAPPER}} .ct-heading .item--sub-title span::after' => 'background-color: {{VALUE}} !important;',
],
'condition' => [
'sub_title_style' => ['style-line-right', 'style-line-leftright', 'style-dot-leftright'],
],
),
array(
'name' => 'ct_animate_sub',
'label' => esc_html__('Case Animate', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => itfirm_animate_case(),
'default' => '',
),
array(
'name' => 'ct_animate_delay_sub',
'label' => esc_html__('Animate Delay', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => '0',
'description' => 'Enter number. Default 0ms',
),
),
),
array(
'name' => 'text_below_section',
'label' => esc_html__('Text Below', 'itfirm' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'text_below',
'label' => esc_html__('Text', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXT,
'label_block' => true,
),
array(
'name' => 'text_below_color',
'label' => esc_html__('Text Color Gradient From', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
),
array(
'name' => 'text_below_color_gradient',
'label' => esc_html__('Text Color Gradient To', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
),
array(
'name' => 'text_below_typography',
'label' => esc_html__('Sub Title Typography', 'itfirm' ),
'type' => \Elementor\Group_Control_Typography::get_type(),
'control_type' => 'group',
'selector' => '{{WRAPPER}} .ct-heading .item--text-below',
),
),
),
),
),
),
get_template_directory() . '/elementor/core/widgets/'
);