File: //proc/self/root/proc/self/cwd/wp-content/themes/consultio/elementor/core/register/ct_title.php
<?php
ct_add_custom_widget(
array(
'name' => 'ct_title',
'title' => esc_html__('Case Title', 'consultio' ),
'icon' => 'eicon-t-letter',
'categories' => array( Case_Theme_Core::CT_CATEGORY_NAME ),
'scripts' => array(
),
'params' => array(
'sections' => array(
array(
'name' => 'title_section',
'label' => esc_html__('Content', 'consultio' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'style',
'label' => esc_html__('Style', 'consultio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'style1' => 'Style 1',
'style2' => 'Style 2',
'style3' => 'Style 3',
'style4' => 'Style 4',
],
'default' => 'style1',
),
array(
'name' => 'title',
'label' => esc_html__('Title', 'consultio' ),
'type' => \Elementor\Controls_Manager::TEXT,
'label_block' => true,
),
array(
'name' => 'title_color',
'label' => esc_html__('Title Color', 'consultio' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .ct-title1 h3' => 'color: {{VALUE}};',
],
),
array(
'name' => 'title_color_hover',
'label' => esc_html__('Title Color Hover', 'consultio' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .ct-title1 h3:hover' => 'color: {{VALUE}} !important;',
'{{WRAPPER}} .ct-title1 h3 a span:before' => 'background-color: {{VALUE}} !important;',
],
'condition' => [
'style' => ['style4'],
],
),
array(
'name' => 'line_color',
'label' => esc_html__('Line Color', 'consultio' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .ct-title1 h3 i' => 'background-color: {{VALUE}};',
],
'condition' => [
'style' => ['style1', 'style3'],
],
),
array(
'name' => 'title_typography',
'type' => \Elementor\Group_Control_Typography::get_type(),
'control_type' => 'group',
'selector' => '{{WRAPPER}} .ct-title1 h3',
),
array(
'name' => 'title_space_bottom',
'label' => esc_html__('Bottom Space', 'consultio' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'control_type' => 'responsive',
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 300,
],
],
'selectors' => [
'{{WRAPPER}} .ct-title1 h3' => 'margin-bottom: {{SIZE}}{{UNIT}} !important;',
],
),
array(
'name' => 'link',
'label' => esc_html__('Link', 'consultio' ),
'type' => \Elementor\Controls_Manager::URL,
'condition' => [
'style' => ['style4'],
],
),
),
),
),
),
),
get_template_directory() . '/elementor/core/widgets/'
);