1985 lines
50 KiB
PHP
1985 lines
50 KiB
PHP
<?php
|
|
namespace ElementorPro\Modules\CallToAction\Widgets;
|
|
|
|
use Elementor\Controls_Manager;
|
|
use Elementor\Control_Media;
|
|
use Elementor\Core\Kits\Documents\Tabs\Global_Colors;
|
|
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
|
|
use Elementor\Group_Control_Border;
|
|
use Elementor\Group_Control_Box_Shadow;
|
|
use Elementor\Group_Control_Css_Filter;
|
|
use Elementor\Group_Control_Image_Size;
|
|
use Elementor\Group_Control_Text_Shadow;
|
|
use Elementor\Group_Control_Typography;
|
|
use Elementor\Group_Control_Text_Stroke;
|
|
use Elementor\Icons_Manager;
|
|
use Elementor\Utils;
|
|
use ElementorPro\Base\Base_Widget;
|
|
use ElementorPro\Plugin;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
|
|
class Call_To_Action extends Base_Widget {
|
|
|
|
public function get_name() {
|
|
return 'call-to-action';
|
|
}
|
|
|
|
public function get_title() {
|
|
return esc_html__( 'Call to Action', 'elementor-pro' );
|
|
}
|
|
|
|
public function get_icon() {
|
|
return 'eicon-image-rollover';
|
|
}
|
|
|
|
public function get_keywords() {
|
|
return [ 'call to action', 'cta', 'button' ];
|
|
}
|
|
|
|
protected function register_controls() {
|
|
$this->start_controls_section(
|
|
'section_main_image',
|
|
[
|
|
'label' => esc_html__( 'Image', 'elementor-pro' ),
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'skin',
|
|
[
|
|
'label' => esc_html__( 'Skin', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'options' => [
|
|
'classic' => esc_html__( 'Classic', 'elementor-pro' ),
|
|
'cover' => esc_html__( 'Cover', 'elementor-pro' ),
|
|
],
|
|
'render_type' => 'template',
|
|
'prefix_class' => 'elementor-cta--skin-',
|
|
'default' => 'classic',
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'layout',
|
|
[
|
|
'label' => esc_html__( 'Position', 'elementor-pro' ),
|
|
'type' => Controls_Manager::CHOOSE,
|
|
'options' => [
|
|
'left' => [
|
|
'title' => esc_html__( 'Left', 'elementor-pro' ),
|
|
'icon' => 'eicon-h-align-left',
|
|
],
|
|
'above' => [
|
|
'title' => esc_html__( 'Above', 'elementor-pro' ),
|
|
'icon' => 'eicon-v-align-top',
|
|
],
|
|
'right' => [
|
|
'title' => esc_html__( 'Right', 'elementor-pro' ),
|
|
'icon' => 'eicon-h-align-right',
|
|
],
|
|
],
|
|
'prefix_class' => 'elementor-cta-%s-layout-image-',
|
|
'condition' => [
|
|
'skin!' => 'cover',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'bg_image',
|
|
[
|
|
'label' => esc_html__( 'Choose Image', 'elementor-pro' ),
|
|
'type' => Controls_Manager::MEDIA,
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
'default' => [
|
|
'url' => Utils::get_placeholder_image_src(),
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Image_Size::get_type(),
|
|
[
|
|
'name' => 'bg_image', // Actually its `image_size`
|
|
'label' => esc_html__( 'Image Resolution', 'elementor-pro' ),
|
|
'default' => 'large',
|
|
'condition' => [
|
|
'bg_image[id]!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'section_content',
|
|
[
|
|
'label' => esc_html__( 'Content', 'elementor-pro' ),
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'graphic_element',
|
|
[
|
|
'label' => esc_html__( 'Graphic Element', 'elementor-pro' ),
|
|
'type' => Controls_Manager::CHOOSE,
|
|
'options' => [
|
|
'none' => [
|
|
'title' => esc_html__( 'None', 'elementor-pro' ),
|
|
'icon' => 'eicon-ban',
|
|
],
|
|
'image' => [
|
|
'title' => esc_html__( 'Image', 'elementor-pro' ),
|
|
'icon' => 'eicon-image-bold',
|
|
],
|
|
'icon' => [
|
|
'title' => esc_html__( 'Icon', 'elementor-pro' ),
|
|
'icon' => 'eicon-star',
|
|
],
|
|
],
|
|
'default' => 'none',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'graphic_image',
|
|
[
|
|
'label' => esc_html__( 'Choose Image', 'elementor-pro' ),
|
|
'type' => Controls_Manager::MEDIA,
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
'default' => [
|
|
'url' => Utils::get_placeholder_image_src(),
|
|
],
|
|
'condition' => [
|
|
'graphic_element' => 'image',
|
|
],
|
|
'show_label' => false,
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Image_Size::get_type(),
|
|
[
|
|
'name' => 'graphic_image', // Actually its `image_size`
|
|
'default' => 'thumbnail',
|
|
'condition' => [
|
|
'graphic_element' => 'image',
|
|
'graphic_image[id]!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'selected_icon',
|
|
[
|
|
'label' => esc_html__( 'Icon', 'elementor-pro' ),
|
|
'type' => Controls_Manager::ICONS,
|
|
'fa4compatibility' => 'icon',
|
|
'default' => [
|
|
'value' => 'fas fa-star',
|
|
'library' => 'fa-solid',
|
|
],
|
|
'condition' => [
|
|
'graphic_element' => 'icon',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'icon_view',
|
|
[
|
|
'label' => esc_html__( 'View', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'options' => [
|
|
'default' => esc_html__( 'Default', 'elementor-pro' ),
|
|
'stacked' => esc_html__( 'Stacked', 'elementor-pro' ),
|
|
'framed' => esc_html__( 'Framed', 'elementor-pro' ),
|
|
],
|
|
'default' => 'default',
|
|
'condition' => [
|
|
'graphic_element' => 'icon',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'icon_shape',
|
|
[
|
|
'label' => esc_html__( 'Shape', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'options' => [
|
|
'circle' => esc_html__( 'Circle', 'elementor-pro' ),
|
|
'square' => esc_html__( 'Square', 'elementor-pro' ),
|
|
],
|
|
'default' => 'circle',
|
|
'condition' => [
|
|
'icon_view!' => 'default',
|
|
'graphic_element' => 'icon',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'title',
|
|
[
|
|
'label' => esc_html__( 'Title', 'elementor-pro' ),
|
|
'type' => Controls_Manager::TEXT,
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
'default' => esc_html__( 'This is the heading', 'elementor-pro' ),
|
|
'placeholder' => esc_html__( 'Enter your title', 'elementor-pro' ),
|
|
'label_block' => true,
|
|
'separator' => 'before',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'title_tag',
|
|
[
|
|
'label' => esc_html__( 'Title HTML Tag', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'options' => [
|
|
'h1' => 'H1',
|
|
'h2' => 'H2',
|
|
'h3' => 'H3',
|
|
'h4' => 'H4',
|
|
'h5' => 'H5',
|
|
'h6' => 'H6',
|
|
'div' => 'div',
|
|
'span' => 'span',
|
|
],
|
|
'default' => 'h2',
|
|
'condition' => [
|
|
'title!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'description',
|
|
[
|
|
'label' => esc_html__( 'Description', 'elementor-pro' ),
|
|
'type' => Controls_Manager::TEXTAREA,
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
'default' => esc_html__( 'Lorem ipsum dolor sit amet consectetur adipiscing elit dolor', 'elementor-pro' ),
|
|
'placeholder' => esc_html__( 'Enter your description', 'elementor-pro' ),
|
|
'separator' => 'before',
|
|
'rows' => 5,
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'description_tag',
|
|
[
|
|
'label' => esc_html__( 'Description HTML Tag', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'options' => [
|
|
'h1' => 'H1',
|
|
'h2' => 'H2',
|
|
'h3' => 'H3',
|
|
'h4' => 'H4',
|
|
'h5' => 'H5',
|
|
'h6' => 'H6',
|
|
'div' => 'div',
|
|
'span' => 'span',
|
|
],
|
|
'default' => 'div',
|
|
'condition' => [
|
|
'description!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button',
|
|
[
|
|
'label' => esc_html__( 'Button Text', 'elementor-pro' ),
|
|
'type' => Controls_Manager::TEXT,
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
'default' => esc_html__( 'Click Here', 'elementor-pro' ),
|
|
'separator' => 'before',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'link',
|
|
[
|
|
'label' => esc_html__( 'Link', 'elementor-pro' ),
|
|
'type' => Controls_Manager::URL,
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
'placeholder' => esc_html__( 'https://your-link.com', 'elementor-pro' ),
|
|
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'link_click',
|
|
[
|
|
'label' => esc_html__( 'Apply Link On', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'options' => [
|
|
'box' => esc_html__( 'Whole Box', 'elementor-pro' ),
|
|
'button' => esc_html__( 'Button Only', 'elementor-pro' ),
|
|
],
|
|
'default' => 'button',
|
|
'condition' => [
|
|
'link[url]!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'section_ribbon',
|
|
[
|
|
'label' => esc_html__( 'Ribbon', 'elementor-pro' ),
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'ribbon_title',
|
|
[
|
|
'label' => esc_html__( 'Title', 'elementor-pro' ),
|
|
'type' => Controls_Manager::TEXT,
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'ribbon_horizontal_position',
|
|
[
|
|
'label' => esc_html__( 'Position', 'elementor-pro' ),
|
|
'type' => Controls_Manager::CHOOSE,
|
|
'options' => [
|
|
'left' => [
|
|
'title' => esc_html__( 'Left', 'elementor-pro' ),
|
|
'icon' => 'eicon-h-align-left',
|
|
],
|
|
'right' => [
|
|
'title' => esc_html__( 'Right', 'elementor-pro' ),
|
|
'icon' => 'eicon-h-align-right',
|
|
],
|
|
],
|
|
'condition' => [
|
|
'ribbon_title!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'box_style',
|
|
[
|
|
'label' => esc_html__( 'Box', 'elementor-pro' ),
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'min-height',
|
|
[
|
|
'label' => esc_html__( 'Height', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', 'em', 'rem', 'vh', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'min' => 100,
|
|
'max' => 1000,
|
|
],
|
|
'em' => [
|
|
'min' => 10,
|
|
'max' => 100,
|
|
],
|
|
'rem' => [
|
|
'min' => 10,
|
|
'max' => 100,
|
|
],
|
|
'vh' => [
|
|
'min' => 10,
|
|
'max' => 100,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__content' => 'min-height: {{SIZE}}{{UNIT}}',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'alignment',
|
|
[
|
|
'label' => esc_html__( 'Alignment', 'elementor-pro' ),
|
|
'type' => Controls_Manager::CHOOSE,
|
|
'options' => [
|
|
'left' => [
|
|
'title' => esc_html__( 'Left', 'elementor-pro' ),
|
|
'icon' => 'eicon-text-align-left',
|
|
],
|
|
'center' => [
|
|
'title' => esc_html__( 'Center', 'elementor-pro' ),
|
|
'icon' => 'eicon-text-align-center',
|
|
],
|
|
'right' => [
|
|
'title' => esc_html__( 'Right', 'elementor-pro' ),
|
|
'icon' => 'eicon-text-align-right',
|
|
],
|
|
],
|
|
'default' => 'center',
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__content' => 'text-align: {{VALUE}}',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'vertical_position',
|
|
[
|
|
'label' => esc_html__( 'Vertical Position', 'elementor-pro' ),
|
|
'type' => Controls_Manager::CHOOSE,
|
|
'options' => [
|
|
'top' => [
|
|
'title' => esc_html__( 'Top', 'elementor-pro' ),
|
|
'icon' => 'eicon-v-align-top',
|
|
],
|
|
'middle' => [
|
|
'title' => esc_html__( 'Middle', 'elementor-pro' ),
|
|
'icon' => 'eicon-v-align-middle',
|
|
],
|
|
'bottom' => [
|
|
'title' => esc_html__( 'Bottom', 'elementor-pro' ),
|
|
'icon' => 'eicon-v-align-bottom',
|
|
],
|
|
],
|
|
'prefix_class' => 'elementor-cta--valign-',
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'padding',
|
|
[
|
|
'label' => esc_html__( 'Padding', 'elementor-pro' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => [ 'px', '%', 'em', 'rem', 'vw', 'custom' ],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'heading_bg_image_style',
|
|
[
|
|
'type' => Controls_Manager::HEADING,
|
|
'label' => esc_html__( 'Image', 'elementor-pro' ),
|
|
'condition' => [
|
|
'bg_image[url]!' => '',
|
|
'skin' => 'classic',
|
|
],
|
|
'separator' => 'before',
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'image_min_width',
|
|
[
|
|
'label' => esc_html__( 'Width', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', '%', 'em', 'rem', 'vw', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 500,
|
|
],
|
|
'em' => [
|
|
'max' => 50,
|
|
],
|
|
'rem' => [
|
|
'max' => 50,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__bg-wrapper' => 'min-width: {{SIZE}}{{UNIT}}',
|
|
],
|
|
'condition' => [
|
|
'skin' => 'classic',
|
|
'layout!' => 'above',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'image_min_height',
|
|
[
|
|
'label' => esc_html__( 'Height', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', 'em', 'rem', 'vh', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 500,
|
|
],
|
|
'em' => [
|
|
'max' => 50,
|
|
],
|
|
'rem' => [
|
|
'max' => 50,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__bg-wrapper' => 'min-height: {{SIZE}}{{UNIT}}',
|
|
],
|
|
'condition' => [
|
|
'skin' => 'classic',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'graphic_element_style',
|
|
[
|
|
'label' => esc_html__( 'Graphic Element', 'elementor-pro' ),
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
'condition' => [
|
|
'graphic_element!' => [
|
|
'none',
|
|
'',
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'graphic_image_spacing',
|
|
[
|
|
'label' => esc_html__( 'Spacing', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 100,
|
|
],
|
|
'em' => [
|
|
'max' => 10,
|
|
],
|
|
'rem' => [
|
|
'max' => 10,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__image' => 'margin-bottom: {{SIZE}}{{UNIT}};',
|
|
],
|
|
'condition' => [
|
|
'graphic_element' => 'image',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'graphic_image_width',
|
|
[
|
|
'label' => esc_html__( 'Width', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', '%', 'em', 'rem', 'vw', 'custom' ],
|
|
'default' => [
|
|
'unit' => '%',
|
|
],
|
|
'range' => [
|
|
'%' => [
|
|
'min' => 5,
|
|
'max' => 100,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__image img' => 'width: {{SIZE}}{{UNIT}}',
|
|
],
|
|
'condition' => [
|
|
'graphic_element' => 'image',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Border::get_type(),
|
|
[
|
|
'name' => 'graphic_image_border',
|
|
'selector' => '{{WRAPPER}} .elementor-cta__image img',
|
|
'condition' => [
|
|
'graphic_element' => 'image',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'graphic_image_border_radius',
|
|
[
|
|
'label' => esc_html__( 'Border Radius', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', '%', 'em', 'rem', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 200,
|
|
],
|
|
'em' => [
|
|
'max' => 20,
|
|
],
|
|
'rem' => [
|
|
'max' => 20,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__image img' => 'border-radius: {{SIZE}}{{UNIT}}',
|
|
],
|
|
'condition' => [
|
|
'graphic_element' => 'image',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'icon_spacing',
|
|
[
|
|
'label' => esc_html__( 'Spacing', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 100,
|
|
],
|
|
'em' => [
|
|
'max' => 10,
|
|
],
|
|
'rem' => [
|
|
'max' => 10,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-icon-wrapper' => 'margin-bottom: {{SIZE}}{{UNIT}};',
|
|
],
|
|
'condition' => [
|
|
'graphic_element' => 'icon',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'icon_primary_color',
|
|
[
|
|
'label' => esc_html__( 'Primary Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'default' => '',
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-view-stacked .elementor-icon' => 'background-color: {{VALUE}}',
|
|
'{{WRAPPER}} .elementor-view-stacked .elementor-icon svg' => 'stroke: {{VALUE}}',
|
|
'{{WRAPPER}} .elementor-view-framed .elementor-icon, {{WRAPPER}} .elementor-view-default .elementor-icon' => 'color: {{VALUE}}; border-color: {{VALUE}}',
|
|
'{{WRAPPER}} .elementor-view-framed .elementor-icon, {{WRAPPER}} .elementor-view-default .elementor-icon svg' => 'fill: {{VALUE}};',
|
|
],
|
|
'condition' => [
|
|
'graphic_element' => 'icon',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'icon_secondary_color',
|
|
[
|
|
'label' => esc_html__( 'Secondary Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'default' => '',
|
|
'condition' => [
|
|
'graphic_element' => 'icon',
|
|
'icon_view!' => 'default',
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-view-framed .elementor-icon' => 'background-color: {{VALUE}};',
|
|
'{{WRAPPER}} .elementor-view-framed .elementor-icon svg' => 'stroke: {{VALUE}};',
|
|
'{{WRAPPER}} .elementor-view-stacked .elementor-icon' => 'color: {{VALUE}};',
|
|
'{{WRAPPER}} .elementor-view-stacked .elementor-icon svg' => 'fill: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'icon_size',
|
|
[
|
|
'label' => esc_html__( 'Icon Size', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'min' => 6,
|
|
'max' => 300,
|
|
],
|
|
'em' => [
|
|
'min' => 0.6,
|
|
'max' => 30,
|
|
],
|
|
'rem' => [
|
|
'min' => 0.6,
|
|
'max' => 30,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-icon' => 'font-size: {{SIZE}}{{UNIT}};',
|
|
],
|
|
'condition' => [
|
|
'graphic_element' => 'icon',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'icon_padding',
|
|
[
|
|
'label' => esc_html__( 'Icon Padding', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-icon' => 'padding: {{SIZE}}{{UNIT}};',
|
|
],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 50,
|
|
],
|
|
'em' => [
|
|
'min' => 0,
|
|
'max' => 5,
|
|
],
|
|
'rem' => [
|
|
'min' => 0,
|
|
'max' => 5,
|
|
],
|
|
],
|
|
'condition' => [
|
|
'graphic_element' => 'icon',
|
|
'icon_view!' => 'default',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'icon_border_width',
|
|
[
|
|
'label' => esc_html__( 'Border Width', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', '%', 'em', 'rem', 'vw', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 20,
|
|
],
|
|
'em' => [
|
|
'max' => 2,
|
|
],
|
|
'rem' => [
|
|
'max' => 2,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-icon' => 'border-width: {{SIZE}}{{UNIT}}',
|
|
],
|
|
'condition' => [
|
|
'graphic_element' => 'icon',
|
|
'icon_view' => 'framed',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'icon_border_radius',
|
|
[
|
|
'label' => esc_html__( 'Border Radius', 'elementor-pro' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => [ 'px', '%', 'em', 'rem', 'custom' ],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-icon' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
],
|
|
'condition' => [
|
|
'graphic_element' => 'icon',
|
|
'icon_view!' => 'default',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'section_content_style',
|
|
[
|
|
'label' => esc_html__( 'Content', 'elementor-pro' ),
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
'conditions' => [
|
|
'relation' => 'or',
|
|
'terms' => [
|
|
[
|
|
'name' => 'title',
|
|
'operator' => '!==',
|
|
'value' => '',
|
|
],
|
|
[
|
|
'name' => 'description',
|
|
'operator' => '!==',
|
|
'value' => '',
|
|
],
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'heading_style_title',
|
|
[
|
|
'type' => Controls_Manager::HEADING,
|
|
'label' => esc_html__( 'Title', 'elementor-pro' ),
|
|
'condition' => [
|
|
'title!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Typography::get_type(),
|
|
[
|
|
'name' => 'title_typography',
|
|
'global' => [
|
|
'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
|
|
],
|
|
'selector' => '{{WRAPPER}} .elementor-cta__title',
|
|
'condition' => [
|
|
'title!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Text_Stroke::get_type(),
|
|
[
|
|
'name' => 'text_stroke',
|
|
'selector' => '{{WRAPPER}} .elementor-cta__title',
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'title_spacing',
|
|
[
|
|
'label' => esc_html__( 'Spacing', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__title:not(:last-child)' => 'margin-bottom: {{SIZE}}{{UNIT}};',
|
|
],
|
|
'condition' => [
|
|
'title!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'heading_style_description',
|
|
[
|
|
'type' => Controls_Manager::HEADING,
|
|
'label' => esc_html__( 'Description', 'elementor-pro' ),
|
|
'separator' => 'before',
|
|
'condition' => [
|
|
'description!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Typography::get_type(),
|
|
[
|
|
'name' => 'description_typography',
|
|
'global' => [
|
|
'default' => Global_Typography::TYPOGRAPHY_TEXT,
|
|
],
|
|
'selector' => '{{WRAPPER}} .elementor-cta__description',
|
|
'condition' => [
|
|
'description!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'description_spacing',
|
|
[
|
|
'label' => esc_html__( 'Spacing', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__description:not(:last-child)' => 'margin-bottom: {{SIZE}}{{UNIT}};',
|
|
],
|
|
'condition' => [
|
|
'description!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'heading_content_colors',
|
|
[
|
|
'type' => Controls_Manager::HEADING,
|
|
'label' => esc_html__( 'Colors', 'elementor-pro' ),
|
|
'separator' => 'before',
|
|
]
|
|
);
|
|
|
|
$this->start_controls_tabs( 'color_tabs' );
|
|
|
|
$this->start_controls_tab( 'colors_normal',
|
|
[
|
|
'label' => esc_html__( 'Normal', 'elementor-pro' ),
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'content_bg_color',
|
|
[
|
|
'label' => esc_html__( 'Background Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__content' => 'background-color: {{VALUE}}',
|
|
],
|
|
'condition' => [
|
|
'skin' => 'classic',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'title_color',
|
|
[
|
|
'label' => esc_html__( 'Title Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__title' => 'color: {{VALUE}}',
|
|
],
|
|
'condition' => [
|
|
'title!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'description_color',
|
|
[
|
|
'label' => esc_html__( 'Description Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__description' => 'color: {{VALUE}}',
|
|
],
|
|
'condition' => [
|
|
'description!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_color',
|
|
[
|
|
'label' => esc_html__( 'Button Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__button' => 'color: {{VALUE}}; border-color: {{VALUE}}',
|
|
],
|
|
'condition' => [
|
|
'button!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_tab();
|
|
|
|
$this->start_controls_tab(
|
|
'colors_hover',
|
|
[
|
|
'label' => esc_html__( 'Hover', 'elementor-pro' ),
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'content_bg_color_hover',
|
|
[
|
|
'label' => esc_html__( 'Background Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta:hover .elementor-cta__content' => 'background-color: {{VALUE}}',
|
|
],
|
|
'condition' => [
|
|
'skin' => 'classic',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'title_color_hover',
|
|
[
|
|
'label' => esc_html__( 'Title Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta:hover .elementor-cta__title' => 'color: {{VALUE}}',
|
|
],
|
|
'condition' => [
|
|
'title!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'description_color_hover',
|
|
[
|
|
'label' => esc_html__( 'Description Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta:hover .elementor-cta__description' => 'color: {{VALUE}}',
|
|
],
|
|
'condition' => [
|
|
'description!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_color_hover',
|
|
[
|
|
'label' => esc_html__( 'Button Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta:hover .elementor-cta__button' => 'color: {{VALUE}}; border-color: {{VALUE}}',
|
|
],
|
|
'condition' => [
|
|
'button!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_tab();
|
|
|
|
$this->end_controls_tabs();
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'button_style',
|
|
[
|
|
'label' => esc_html__( 'Button', 'elementor-pro' ),
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
'condition' => [
|
|
'button!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_size',
|
|
[
|
|
'label' => esc_html__( 'Size', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'options' => [
|
|
'xs' => esc_html__( 'Extra Small', 'elementor-pro' ),
|
|
'sm' => esc_html__( 'Small', 'elementor-pro' ),
|
|
'md' => esc_html__( 'Medium', 'elementor-pro' ),
|
|
'lg' => esc_html__( 'Large', 'elementor-pro' ),
|
|
'xl' => esc_html__( 'Extra Large', 'elementor-pro' ),
|
|
],
|
|
'default' => 'sm',
|
|
'condition' => [
|
|
'button_size!' => 'sm', // a workaround to hide the control, unless it's in use (not default).
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Typography::get_type(),
|
|
[
|
|
'name' => 'button_typography',
|
|
'selector' => '{{WRAPPER}} .elementor-cta__button',
|
|
'global' => [
|
|
'default' => Global_Typography::TYPOGRAPHY_ACCENT,
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Text_Shadow::get_type(),
|
|
[
|
|
'name' => 'button_text_shadow',
|
|
'selector' => '{{WRAPPER}} .elementor-cta__button',
|
|
]
|
|
);
|
|
|
|
$this->start_controls_tabs( 'button_tabs' );
|
|
|
|
$this->start_controls_tab( 'button_normal',
|
|
[
|
|
'label' => esc_html__( 'Normal', 'elementor-pro' ),
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_text_color',
|
|
[
|
|
'label' => esc_html__( 'Text Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__button' => 'color: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_background_color',
|
|
[
|
|
'label' => esc_html__( 'Background Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__button' => 'background-color: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_border_color',
|
|
[
|
|
'label' => esc_html__( 'Border Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__button' => 'border-color: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_tab();
|
|
|
|
$this->start_controls_tab(
|
|
'button-hover',
|
|
[
|
|
'label' => esc_html__( 'Hover', 'elementor-pro' ),
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_hover_text_color',
|
|
[
|
|
'label' => esc_html__( 'Text Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__button:hover' => 'color: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_hover_background_color',
|
|
[
|
|
'label' => esc_html__( 'Background Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__button:hover' => 'background-color: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_hover_border_color',
|
|
[
|
|
'label' => esc_html__( 'Border Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__button:hover' => 'border-color: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_tab();
|
|
|
|
$this->end_controls_tabs();
|
|
|
|
$this->add_control(
|
|
'button_border_width',
|
|
[
|
|
'label' => esc_html__( 'Border Width', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', '%', 'em', 'rem', 'vw', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 20,
|
|
],
|
|
'em' => [
|
|
'max' => 2,
|
|
],
|
|
'rem' => [
|
|
'max' => 2,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__button' => 'border-width: {{SIZE}}{{UNIT}};',
|
|
],
|
|
'separator' => 'before',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_border_radius',
|
|
[
|
|
'label' => esc_html__( 'Border Radius', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', '%', 'em', 'rem', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 100,
|
|
],
|
|
'em' => [
|
|
'max' => 10,
|
|
],
|
|
'rem' => [
|
|
'max' => 10,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__button' => 'border-radius: {{SIZE}}{{UNIT}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Box_Shadow::get_type(),
|
|
[
|
|
'name' => 'button_box_shadow',
|
|
'selector' => '{{WRAPPER}} .elementor-cta__button',
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'button_padding',
|
|
[
|
|
'label' => esc_html__( 'Padding', 'elementor-pro' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => [ 'px', '%', 'em', 'rem', 'vw', 'custom' ],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__button' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
],
|
|
'separator' => 'before',
|
|
]
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'section_ribbon_style',
|
|
[
|
|
'label' => esc_html__( 'Ribbon', 'elementor-pro' ),
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
'show_label' => false,
|
|
'condition' => [
|
|
'ribbon_title!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'ribbon_bg_color',
|
|
[
|
|
'label' => esc_html__( 'Background Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'global' => [
|
|
'default' => Global_Colors::COLOR_ACCENT,
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-ribbon-inner' => 'background-color: {{VALUE}}',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'ribbon_text_color',
|
|
[
|
|
'label' => esc_html__( 'Text Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-ribbon-inner' => 'color: {{VALUE}}',
|
|
],
|
|
]
|
|
);
|
|
|
|
$ribbon_distance_transform = is_rtl() ? 'translateY(-50%) translateX({{SIZE}}{{UNIT}}) rotate(-45deg)' : 'translateY(-50%) translateX(-50%) translateX({{SIZE}}{{UNIT}}) rotate(-45deg)';
|
|
|
|
$this->add_responsive_control(
|
|
'ribbon_distance',
|
|
[
|
|
'label' => esc_html__( 'Distance', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 50,
|
|
],
|
|
'em' => [
|
|
'max' => 5,
|
|
],
|
|
'em' => [
|
|
'max' => 5,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-ribbon-inner' => 'margin-top: {{SIZE}}{{UNIT}}; transform: ' . $ribbon_distance_transform,
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Typography::get_type(),
|
|
[
|
|
'name' => 'ribbon_typography',
|
|
'selector' => '{{WRAPPER}} .elementor-ribbon-inner',
|
|
'global' => [
|
|
'default' => Global_Typography::TYPOGRAPHY_ACCENT,
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Box_Shadow::get_type(),
|
|
[
|
|
'name' => 'box_shadow',
|
|
'selector' => '{{WRAPPER}} .elementor-ribbon-inner',
|
|
]
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'hover_effects',
|
|
[
|
|
'label' => esc_html__( 'Hover Effects', 'elementor-pro' ),
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'content_hover_heading',
|
|
[
|
|
'type' => Controls_Manager::HEADING,
|
|
'label' => esc_html__( 'Content', 'elementor-pro' ),
|
|
'condition' => [
|
|
'skin' => 'cover',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'content_animation',
|
|
[
|
|
'label' => esc_html__( 'Hover Animation', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'groups' => [
|
|
[
|
|
'label' => esc_html__( 'None', 'elementor-pro' ),
|
|
'options' => [
|
|
'' => esc_html__( 'None', 'elementor-pro' ),
|
|
],
|
|
],
|
|
[
|
|
'label' => esc_html__( 'Entrance', 'elementor-pro' ),
|
|
'options' => [
|
|
'enter-from-right' => 'Slide In Right',
|
|
'enter-from-left' => 'Slide In Left',
|
|
'enter-from-top' => 'Slide In Up',
|
|
'enter-from-bottom' => 'Slide In Down',
|
|
'enter-zoom-in' => 'Zoom In',
|
|
'enter-zoom-out' => 'Zoom Out',
|
|
'fade-in' => 'Fade In',
|
|
],
|
|
],
|
|
[
|
|
'label' => esc_html__( 'Reaction', 'elementor-pro' ),
|
|
'options' => [
|
|
'grow' => 'Grow',
|
|
'shrink' => 'Shrink',
|
|
'move-right' => 'Move Right',
|
|
'move-left' => 'Move Left',
|
|
'move-up' => 'Move Up',
|
|
'move-down' => 'Move Down',
|
|
],
|
|
],
|
|
[
|
|
'label' => esc_html__( 'Exit', 'elementor-pro' ),
|
|
'options' => [
|
|
'exit-to-right' => 'Slide Out Right',
|
|
'exit-to-left' => 'Slide Out Left',
|
|
'exit-to-top' => 'Slide Out Up',
|
|
'exit-to-bottom' => 'Slide Out Down',
|
|
'exit-zoom-in' => 'Zoom In',
|
|
'exit-zoom-out' => 'Zoom Out',
|
|
'fade-out' => 'Fade Out',
|
|
],
|
|
],
|
|
],
|
|
'default' => 'grow',
|
|
'condition' => [
|
|
'skin' => 'cover',
|
|
],
|
|
]
|
|
);
|
|
|
|
/*
|
|
*
|
|
* Add class 'elementor-animated-content' to widget when assigned content animation
|
|
*
|
|
*/
|
|
$this->add_control(
|
|
'animation_class',
|
|
[
|
|
'label' => esc_html__( 'Animation', 'elementor-pro' ),
|
|
'type' => Controls_Manager::HIDDEN,
|
|
'default' => 'animated-content',
|
|
'prefix_class' => 'elementor-',
|
|
'condition' => [
|
|
'content_animation!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'content_animation_duration',
|
|
[
|
|
'label' => esc_html__( 'Animation Duration', 'elementor-pro' ) . ' (ms)',
|
|
'type' => Controls_Manager::SLIDER,
|
|
'render_type' => 'template',
|
|
'default' => [
|
|
'size' => 1000,
|
|
],
|
|
'range' => [
|
|
'px' => [
|
|
'min' => 0,
|
|
'max' => 3000,
|
|
'step' => 100,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__content-item' => 'transition-duration: {{SIZE}}ms',
|
|
'{{WRAPPER}}.elementor-cta--sequenced-animation .elementor-cta__content-item:nth-child(2)' => 'transition-delay: calc( {{SIZE}}ms / 3 )',
|
|
'{{WRAPPER}}.elementor-cta--sequenced-animation .elementor-cta__content-item:nth-child(3)' => 'transition-delay: calc( ( {{SIZE}}ms / 3 ) * 2 )',
|
|
'{{WRAPPER}}.elementor-cta--sequenced-animation .elementor-cta__content-item:nth-child(4)' => 'transition-delay: calc( ( {{SIZE}}ms / 3 ) * 3 )',
|
|
],
|
|
'condition' => [
|
|
'content_animation!' => '',
|
|
'skin' => 'cover',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'sequenced_animation',
|
|
[
|
|
'label' => esc_html__( 'Sequenced Animation', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SWITCHER,
|
|
'label_on' => esc_html__( 'On', 'elementor-pro' ),
|
|
'label_off' => esc_html__( 'Off', 'elementor-pro' ),
|
|
'return_value' => 'elementor-cta--sequenced-animation',
|
|
'prefix_class' => '',
|
|
'condition' => [
|
|
'content_animation!' => '',
|
|
'skin' => 'cover',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'background_hover_heading',
|
|
[
|
|
'type' => Controls_Manager::HEADING,
|
|
'label' => esc_html__( 'Background', 'elementor-pro' ),
|
|
'separator' => 'before',
|
|
'condition' => [
|
|
'skin' => 'cover',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'transformation',
|
|
[
|
|
'label' => esc_html__( 'Hover Animation', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'options' => [
|
|
'' => 'None',
|
|
'zoom-in' => 'Zoom In',
|
|
'zoom-out' => 'Zoom Out',
|
|
'move-left' => 'Move Left',
|
|
'move-right' => 'Move Right',
|
|
'move-up' => 'Move Up',
|
|
'move-down' => 'Move Down',
|
|
],
|
|
'default' => 'zoom-in',
|
|
'prefix_class' => 'elementor-bg-transform elementor-bg-transform-',
|
|
]
|
|
);
|
|
|
|
$this->start_controls_tabs( 'bg_effects_tabs' );
|
|
|
|
$this->start_controls_tab( 'normal',
|
|
[
|
|
'label' => esc_html__( 'Normal', 'elementor-pro' ),
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'overlay_color',
|
|
[
|
|
'label' => esc_html__( 'Overlay Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta:not(:hover) .elementor-cta__bg-overlay' => 'background-color: {{VALUE}}',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Css_Filter::get_type(),
|
|
[
|
|
'name' => 'bg_filters',
|
|
'selector' => '{{WRAPPER}} .elementor-cta__bg',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'overlay_blend_mode',
|
|
[
|
|
'label' => esc_html__( 'Blend Mode', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'options' => [
|
|
'' => esc_html__( 'Normal', 'elementor-pro' ),
|
|
'multiply' => 'Multiply',
|
|
'screen' => 'Screen',
|
|
'overlay' => 'Overlay',
|
|
'darken' => 'Darken',
|
|
'lighten' => 'Lighten',
|
|
'color-dodge' => 'Color Dodge',
|
|
'color-burn' => 'Color Burn',
|
|
'hue' => 'Hue',
|
|
'saturation' => 'Saturation',
|
|
'color' => 'Color',
|
|
'exclusion' => 'Exclusion',
|
|
'luminosity' => 'Luminosity',
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta__bg-overlay' => 'mix-blend-mode: {{VALUE}}',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_tab();
|
|
|
|
$this->start_controls_tab( 'hover',
|
|
[
|
|
'label' => esc_html__( 'Hover', 'elementor-pro' ),
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'overlay_color_hover',
|
|
[
|
|
'label' => esc_html__( 'Overlay Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta:hover .elementor-cta__bg-overlay' => 'background-color: {{VALUE}}',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Css_Filter::get_type(),
|
|
[
|
|
'name' => 'bg_filters_hover',
|
|
'selector' => '{{WRAPPER}} .elementor-cta:hover .elementor-cta__bg',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'effect_duration',
|
|
[
|
|
'label' => esc_html__( 'Transition Duration', 'elementor-pro' ) . ' (ms)',
|
|
'type' => Controls_Manager::SLIDER,
|
|
'render_type' => 'template',
|
|
'default' => [
|
|
'size' => 1500,
|
|
],
|
|
'range' => [
|
|
'px' => [
|
|
'min' => 0,
|
|
'max' => 3000,
|
|
'step' => 100,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-cta .elementor-cta__bg, {{WRAPPER}} .elementor-cta .elementor-cta__bg-overlay' => 'transition-duration: {{SIZE}}ms',
|
|
],
|
|
'separator' => 'before',
|
|
]
|
|
);
|
|
|
|
$this->end_controls_tab();
|
|
|
|
$this->end_controls_tabs();
|
|
|
|
$this->end_controls_section();
|
|
}
|
|
|
|
protected function render() {
|
|
$settings = $this->get_settings_for_display();
|
|
|
|
$wrapper_tag = 'div';
|
|
$button_tag = 'a';
|
|
$title_tag = Utils::validate_html_tag( $settings['title_tag'] );
|
|
$description_tag = Utils::validate_html_tag( $settings['description_tag'] );
|
|
$bg_image = '';
|
|
$content_animation = $settings['content_animation'];
|
|
$animation_class = '';
|
|
$print_bg = true;
|
|
$print_content = true;
|
|
|
|
if ( ! empty( $settings['bg_image']['id'] ) ) {
|
|
$bg_image = Group_Control_Image_Size::get_attachment_image_src( $settings['bg_image']['id'], 'bg_image', $settings );
|
|
} elseif ( ! empty( $settings['bg_image']['url'] ) ) {
|
|
$bg_image = $settings['bg_image']['url'];
|
|
}
|
|
|
|
if ( empty( $bg_image ) && 'classic' == $settings['skin'] ) {
|
|
$print_bg = false;
|
|
}
|
|
|
|
if ( empty( $settings['title'] ) && empty( $settings['description'] ) && empty( $settings['button'] ) && 'none' == $settings['graphic_element'] ) {
|
|
$print_content = false;
|
|
}
|
|
|
|
$this->add_render_attribute( 'wrapper', 'class', 'elementor-cta' );
|
|
|
|
/*$this->add_render_attribute( 'background_image', 'style', [
|
|
'background-image: url(' . $bg_image . ');',
|
|
] );*/
|
|
|
|
$this->add_render_attribute(
|
|
'background_image',
|
|
[
|
|
'style' => 'background-image: url(' . esc_url( $bg_image ) . ');',
|
|
'role' => 'img',
|
|
'aria-label' => Control_Media::get_image_alt( $settings['bg_image'] ),
|
|
]
|
|
);
|
|
|
|
$this->add_render_attribute( 'title', 'class', [
|
|
'elementor-cta__title',
|
|
'elementor-cta__content-item',
|
|
'elementor-content-item',
|
|
] );
|
|
|
|
$this->add_render_attribute( 'description', 'class', [
|
|
'elementor-cta__description',
|
|
'elementor-cta__content-item',
|
|
'elementor-content-item',
|
|
] );
|
|
|
|
$this->add_render_attribute( 'button', 'class', [
|
|
'elementor-cta__button',
|
|
'elementor-button',
|
|
'elementor-size-' . $settings['button_size'],
|
|
] );
|
|
|
|
$this->add_render_attribute( 'graphic_element', 'class',
|
|
[
|
|
'elementor-content-item',
|
|
'elementor-cta__content-item',
|
|
]
|
|
);
|
|
|
|
if ( 'icon' === $settings['graphic_element'] ) {
|
|
$this->add_render_attribute( 'graphic_element', 'class',
|
|
[
|
|
'elementor-icon-wrapper',
|
|
'elementor-cta__icon',
|
|
]
|
|
);
|
|
$this->add_render_attribute( 'graphic_element', 'class', 'elementor-view-' . $settings['icon_view'] );
|
|
if ( 'default' != $settings['icon_view'] ) {
|
|
$this->add_render_attribute( 'graphic_element', 'class', 'elementor-shape-' . $settings['icon_shape'] );
|
|
}
|
|
|
|
if ( ! isset( $settings['icon'] ) && ! Icons_Manager::is_migration_allowed() ) {
|
|
// add old default
|
|
$settings['icon'] = 'fa fa-star';
|
|
}
|
|
|
|
if ( ! empty( $settings['icon'] ) ) {
|
|
$this->add_render_attribute( 'icon', 'class', $settings['icon'] );
|
|
}
|
|
} elseif ( 'image' === $settings['graphic_element'] && ! empty( $settings['graphic_image']['url'] ) ) {
|
|
$this->add_render_attribute( 'graphic_element', 'class', 'elementor-cta__image' );
|
|
}
|
|
|
|
if ( ! empty( $content_animation ) && 'cover' == $settings['skin'] ) {
|
|
|
|
$animation_class = 'elementor-animated-item--' . $content_animation;
|
|
|
|
$this->add_render_attribute( 'title', 'class', $animation_class );
|
|
|
|
$this->add_render_attribute( 'graphic_element', 'class', $animation_class );
|
|
|
|
$this->add_render_attribute( 'description', 'class', $animation_class );
|
|
|
|
}
|
|
|
|
if ( ! empty( $settings['link']['url'] ) ) {
|
|
$link_element = 'button';
|
|
|
|
if ( 'box' === $settings['link_click'] ) {
|
|
$wrapper_tag = 'a';
|
|
$button_tag = 'span';
|
|
$link_element = 'wrapper';
|
|
}
|
|
|
|
$this->add_link_attributes( $link_element, $settings['link'] );
|
|
}
|
|
|
|
$this->add_inline_editing_attributes( 'title' );
|
|
$this->add_inline_editing_attributes( 'description' );
|
|
$this->add_inline_editing_attributes( 'button' );
|
|
|
|
$migrated = isset( $settings['__fa4_migrated']['selected_icon'] );
|
|
$is_new = empty( $settings['icon'] ) && Icons_Manager::is_migration_allowed();
|
|
|
|
?>
|
|
<<?php Utils::print_validated_html_tag( $wrapper_tag ); ?> <?php $this->print_render_attribute_string( 'wrapper' ); ?>>
|
|
<?php if ( $print_bg ) : ?>
|
|
<div class="elementor-cta__bg-wrapper">
|
|
<div class="elementor-cta__bg elementor-bg" <?php $this->print_render_attribute_string( 'background_image' ); ?>></div>
|
|
<div class="elementor-cta__bg-overlay"></div>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $print_content ) : ?>
|
|
<div class="elementor-cta__content">
|
|
<?php if ( 'image' === $settings['graphic_element'] && ! empty( $settings['graphic_image']['url'] ) ) : ?>
|
|
<div <?php $this->print_render_attribute_string( 'graphic_element' ); ?>>
|
|
<?php Group_Control_Image_Size::print_attachment_image_html( $settings, 'graphic_image' ); ?>
|
|
</div>
|
|
<?php elseif ( 'icon' === $settings['graphic_element'] && ( ! empty( $settings['icon'] ) || ! empty( $settings['selected_icon'] ) ) ) : ?>
|
|
<div <?php $this->print_render_attribute_string( 'graphic_element' ); ?>>
|
|
<div class="elementor-icon">
|
|
<?php if ( $is_new || $migrated ) :
|
|
Icons_Manager::render_icon( $settings['selected_icon'], [ 'aria-hidden' => 'true' ] );
|
|
else : ?>
|
|
<i <?php $this->print_render_attribute_string( 'icon' ); ?>></i>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( ! empty( $settings['title'] ) ) : ?>
|
|
<<?php Utils::print_validated_html_tag( $title_tag ); ?> <?php $this->print_render_attribute_string( 'title' ); ?>>
|
|
<?php $this->print_unescaped_setting( 'title' ); ?>
|
|
</<?php Utils::print_validated_html_tag( $title_tag ); ?>>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( ! empty( $settings['description'] ) ) : ?>
|
|
<<?php Utils::print_validated_html_tag( $description_tag ); ?> <?php $this->print_render_attribute_string( 'description' ); ?>>
|
|
<?php $this->print_unescaped_setting( 'description' ); ?>
|
|
</<?php Utils::print_validated_html_tag( $description_tag ); ?>>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( ! empty( $settings['button'] ) ) : ?>
|
|
<div class="elementor-cta__button-wrapper elementor-cta__content-item elementor-content-item <?php echo esc_attr( $animation_class ); ?>">
|
|
<<?php Utils::print_validated_html_tag( $button_tag ); ?> <?php $this->print_render_attribute_string( 'button' ); ?>>
|
|
<?php $this->print_unescaped_setting( 'button' ); ?>
|
|
</<?php Utils::print_unescaped_internal_string( $button_tag ); ?>>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php
|
|
if ( ! empty( $settings['ribbon_title'] ) ) :
|
|
$this->add_render_attribute( 'ribbon-wrapper', 'class', 'elementor-ribbon' );
|
|
|
|
if ( ! empty( $settings['ribbon_horizontal_position'] ) ) {
|
|
$this->add_render_attribute( 'ribbon-wrapper', 'class', 'elementor-ribbon-' . $settings['ribbon_horizontal_position'] );
|
|
}
|
|
?>
|
|
<div <?php $this->print_render_attribute_string( 'ribbon-wrapper' ); ?>>
|
|
<div class="elementor-ribbon-inner"><?php $this->print_unescaped_setting( 'ribbon_title' ); ?></div>
|
|
</div>
|
|
<?php endif; ?>
|
|
</<?php Utils::print_validated_html_tag( $wrapper_tag ); ?>>
|
|
<?php
|
|
}
|
|
|
|
/**
|
|
* Render Call to Action widget output in the editor.
|
|
*
|
|
* Written as a Backbone JavaScript template and used to generate the live preview.
|
|
*
|
|
* @since 2.9.0
|
|
* @access protected
|
|
*/
|
|
protected function content_template() {
|
|
?>
|
|
<#
|
|
var wrapperTag = 'div',
|
|
buttonTag = 'a',
|
|
titleTag = elementor.helpers.validateHTMLTag( settings.title_tag ),
|
|
descriptionTag = elementor.helpers.validateHTMLTag( settings.description_tag ),
|
|
contentAnimation = settings.content_animation,
|
|
animationClass,
|
|
btnSizeClass = 'elementor-size-' + settings.button_size,
|
|
printBg = true,
|
|
printContent = true,
|
|
iconHTML = elementor.helpers.renderIcon( view, settings.selected_icon, { 'aria-hidden': true }, 'i' , 'object' ),
|
|
migrated = elementor.helpers.isIconMigrated( settings, 'selected_icon' );
|
|
|
|
if ( 'box' === settings.link_click ) {
|
|
wrapperTag = 'a';
|
|
buttonTag = 'span';
|
|
view.addRenderAttribute( 'wrapper', 'href', '#' );
|
|
}
|
|
|
|
if ( '' !== settings.bg_image.url ) {
|
|
var bg_image = {
|
|
id: settings.bg_image.id,
|
|
url: settings.bg_image.url,
|
|
size: settings.bg_image_size,
|
|
dimension: settings.bg_image_custom_dimension,
|
|
model: view.getEditModel()
|
|
};
|
|
|
|
var bgImageUrl = elementor.imagesManager.getImageUrl( bg_image );
|
|
}
|
|
|
|
if ( ! bg_image && 'classic' == settings.skin ) {
|
|
printBg = false;
|
|
}
|
|
|
|
if ( ! settings.title && ! settings.description && ! settings.button && 'none' == settings.graphic_element ) {
|
|
printContent = false;
|
|
}
|
|
|
|
if ( 'icon' === settings.graphic_element ) {
|
|
var iconWrapperClasses = 'elementor-icon-wrapper';
|
|
iconWrapperClasses += ' elementor-cta__image';
|
|
iconWrapperClasses += ' elementor-view-' + settings.icon_view;
|
|
if ( 'default' !== settings.icon_view ) {
|
|
iconWrapperClasses += ' elementor-shape-' + settings.icon_shape;
|
|
}
|
|
view.addRenderAttribute( 'graphic_element', 'class', iconWrapperClasses );
|
|
|
|
} else if ( 'image' === settings.graphic_element && '' !== settings.graphic_image.url ) {
|
|
var image = {
|
|
id: settings.graphic_image.id,
|
|
url: settings.graphic_image.url,
|
|
size: settings.graphic_image_size,
|
|
dimension: settings.graphic_image_custom_dimension,
|
|
model: view.getEditModel()
|
|
};
|
|
|
|
var imageUrl = elementor.imagesManager.getImageUrl( image );
|
|
view.addRenderAttribute( 'graphic_element', 'class', 'elementor-cta__image' );
|
|
}
|
|
|
|
if ( contentAnimation && 'cover' === settings.skin ) {
|
|
|
|
var animationClass = 'elementor-animated-item--' + contentAnimation;
|
|
|
|
view.addRenderAttribute( 'title', 'class', animationClass );
|
|
|
|
view.addRenderAttribute( 'description', 'class', animationClass );
|
|
|
|
view.addRenderAttribute( 'graphic_element', 'class', animationClass );
|
|
}
|
|
|
|
view.addRenderAttribute(
|
|
'background_image',
|
|
{
|
|
'style': 'background-image: url(' + bgImageUrl + ');',
|
|
'role': 'img',
|
|
'aria-label': '',
|
|
}
|
|
);
|
|
|
|
view.addRenderAttribute( 'title', 'class', [ 'elementor-cta__title', 'elementor-cta__content-item', 'elementor-content-item' ] );
|
|
view.addRenderAttribute( 'description', 'class', [ 'elementor-cta__description', 'elementor-cta__content-item', 'elementor-content-item' ] );
|
|
view.addRenderAttribute( 'button', 'class', [ 'elementor-cta__button', 'elementor-button', btnSizeClass ] );
|
|
view.addRenderAttribute( 'graphic_element', 'class', [ 'elementor-cta__content-item', 'elementor-content-item' ] );
|
|
|
|
view.addInlineEditingAttributes( 'title' );
|
|
view.addInlineEditingAttributes( 'description' );
|
|
view.addInlineEditingAttributes( 'button' );
|
|
#>
|
|
|
|
<{{ wrapperTag }} class="elementor-cta" {{{ view.getRenderAttributeString( 'wrapper' ) }}}>
|
|
|
|
<# if ( printBg ) { #>
|
|
<div class="elementor-cta__bg-wrapper">
|
|
<div class="elementor-cta__bg elementor-bg" {{{ view.getRenderAttributeString( 'background_image' ) }}}></div>
|
|
<div class="elementor-cta__bg-overlay"></div>
|
|
</div>
|
|
<# } #>
|
|
<# if ( printContent ) { #>
|
|
<div class="elementor-cta__content">
|
|
<# if ( 'image' === settings.graphic_element && '' !== settings.graphic_image.url ) { #>
|
|
<div {{{ view.getRenderAttributeString( 'graphic_element' ) }}}>
|
|
<img src="{{ imageUrl }}">
|
|
</div>
|
|
<# } else if ( 'icon' === settings.graphic_element && ( settings.icon || settings.selected_icon ) ) { #>
|
|
<div {{{ view.getRenderAttributeString( 'graphic_element' ) }}}>
|
|
<div class="elementor-icon">
|
|
<# if ( iconHTML && iconHTML.rendered && ( ! settings.icon || migrated ) ) { #>
|
|
{{{ iconHTML.value }}}
|
|
<# } else { #>
|
|
<i class="{{ settings.icon }}"></i>
|
|
<# } #>
|
|
</div>
|
|
</div>
|
|
<# } #>
|
|
<# if ( settings.title ) { #>
|
|
<{{ titleTag }} {{{ view.getRenderAttributeString( 'title' ) }}}>{{{ settings.title }}}</{{ titleTag }}>
|
|
<# } #>
|
|
|
|
<# if ( settings.description ) { #>
|
|
<{{ descriptionTag }} {{{ view.getRenderAttributeString( 'description' ) }}}>{{{ settings.description }}}</{{ descriptionTag }}>
|
|
<# } #>
|
|
|
|
<# if ( settings.button ) { #>
|
|
<div class="elementor-cta__button-wrapper elementor-cta__content-item elementor-content-item {{ animationClass }}">
|
|
<{{ buttonTag }} href="#" {{{ view.getRenderAttributeString( 'button' ) }}}>{{{ settings.button }}}</{{ buttonTag }}>
|
|
</div>
|
|
<# } #>
|
|
</div>
|
|
<# } #>
|
|
<# if ( settings.ribbon_title ) {
|
|
var ribbonClasses = 'elementor-ribbon';
|
|
|
|
if ( settings.ribbon_horizontal_position ) {
|
|
ribbonClasses += ' elementor-ribbon-' + settings.ribbon_horizontal_position;
|
|
} #>
|
|
<div class="{{ ribbonClasses }}">
|
|
<div class="elementor-ribbon-inner">{{{ settings.ribbon_title }}}</div>
|
|
</div>
|
|
<# } #>
|
|
</{{ wrapperTag }}>
|
|
<?php
|
|
}
|
|
}
|