1777 lines
45 KiB
PHP
1777 lines
45 KiB
PHP
<?php
|
|
namespace ElementorPro\Modules\FlipBox\Widgets;
|
|
|
|
use Elementor\Controls_Manager;
|
|
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
|
|
use Elementor\Group_Control_Background;
|
|
use Elementor\Group_Control_Css_Filter;
|
|
use Elementor\Group_Control_Border;
|
|
use Elementor\Group_Control_Image_Size;
|
|
use Elementor\Group_Control_Typography;
|
|
use Elementor\Group_Control_Text_Stroke;
|
|
use Elementor\Icons_Manager;
|
|
use Elementor\Utils;
|
|
use ElementorPro\Base\Base_Widget;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
|
|
class Flip_Box extends Base_Widget {
|
|
|
|
public function get_name() {
|
|
return 'flip-box';
|
|
}
|
|
|
|
public function get_title() {
|
|
return esc_html__( 'Flip Box', 'elementor-pro' );
|
|
}
|
|
|
|
public function get_icon() {
|
|
return 'eicon-flip-box';
|
|
}
|
|
|
|
protected function register_controls() {
|
|
|
|
$this->start_controls_section(
|
|
'section_side_a_content',
|
|
[
|
|
'label' => esc_html__( 'Front', 'elementor-pro' ),
|
|
]
|
|
);
|
|
|
|
$this->start_controls_tabs( 'side_a_content_tabs' );
|
|
|
|
$this->start_controls_tab( 'side_a_content_tab', [ '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' => 'icon',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'image',
|
|
[
|
|
'label' => esc_html__( 'Choose Image', 'elementor-pro' ),
|
|
'type' => Controls_Manager::MEDIA,
|
|
'default' => [
|
|
'url' => Utils::get_placeholder_image_src(),
|
|
],
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
'condition' => [
|
|
'graphic_element' => 'image',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Image_Size::get_type(),
|
|
[
|
|
'name' => 'image', // Actually its `image_size`
|
|
'default' => 'thumbnail',
|
|
'condition' => [
|
|
'graphic_element' => 'image',
|
|
],
|
|
]
|
|
);
|
|
|
|
$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_text_a',
|
|
[
|
|
'label' => esc_html__( 'Title', 'elementor-pro' ),
|
|
'type' => Controls_Manager::TEXT,
|
|
'default' => esc_html__( 'This is the heading', 'elementor-pro' ),
|
|
'placeholder' => esc_html__( 'Enter your title', 'elementor-pro' ),
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
'label_block' => true,
|
|
'separator' => 'before',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'description_text_a',
|
|
[
|
|
'label' => esc_html__( 'Description', 'elementor-pro' ),
|
|
'type' => Controls_Manager::TEXTAREA,
|
|
'default' => esc_html__( 'Lorem ipsum dolor sit amet consectetur adipiscing elit dolor', 'elementor-pro' ),
|
|
'placeholder' => esc_html__( 'Enter your description', 'elementor-pro' ),
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
'rows' => 10,
|
|
]
|
|
);
|
|
|
|
$this->end_controls_tab();
|
|
|
|
$this->start_controls_tab( 'side_a_background_tab', [ 'label' => esc_html__( 'Background', 'elementor-pro' ) ] );
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Background::get_type(),
|
|
[
|
|
'name' => 'background_a',
|
|
'types' => [ 'classic', 'gradient' ],
|
|
'selector' => '{{WRAPPER}} .elementor-flip-box__front',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'background_overlay_a',
|
|
[
|
|
'label' => esc_html__( 'Background Overlay', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'default' => '',
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-flip-box__front .elementor-flip-box__layer__overlay' => 'background-color: {{VALUE}};',
|
|
],
|
|
'separator' => 'before',
|
|
'condition' => [
|
|
'background_a_image[id]!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Css_Filter::get_type(),
|
|
[
|
|
'name' => 'background_overlay_a_filters',
|
|
'selector' => '{{WRAPPER}} .elementor-flip-box__front .elementor-flip-box__layer__overlay',
|
|
'condition' => [
|
|
'background_overlay_a!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'background_overlay_a_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-flip-box__front .elementor-flip-box__layer__overlay' => 'mix-blend-mode: {{VALUE}}',
|
|
],
|
|
'condition' => [
|
|
'background_overlay_a!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_tab();
|
|
|
|
$this->end_controls_tabs();
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'section_side_b_content',
|
|
[
|
|
'label' => esc_html__( 'Back', 'elementor-pro' ),
|
|
]
|
|
);
|
|
|
|
$this->start_controls_tabs( 'side_b_content_tabs' );
|
|
|
|
$this->start_controls_tab( 'side_b_content_tab', [ 'label' => esc_html__( 'Content', 'elementor-pro' ) ] );
|
|
|
|
$this->add_control(
|
|
'title_text_b',
|
|
[
|
|
'label' => esc_html__( 'Title', 'elementor-pro' ),
|
|
'type' => Controls_Manager::TEXT,
|
|
'default' => esc_html__( 'This is the heading', 'elementor-pro' ),
|
|
'placeholder' => esc_html__( 'Enter your title', 'elementor-pro' ),
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
'label_block' => true,
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'description_text_b',
|
|
[
|
|
'label' => esc_html__( 'Description', 'elementor-pro' ),
|
|
'type' => Controls_Manager::TEXTAREA,
|
|
'default' => esc_html__( 'Lorem ipsum dolor sit amet consectetur adipiscing elit dolor', 'elementor-pro' ),
|
|
'placeholder' => esc_html__( 'Enter your description', 'elementor-pro' ),
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
'rows' => 10,
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_text',
|
|
[
|
|
'label' => esc_html__( 'Button Text', 'elementor-pro' ),
|
|
'type' => Controls_Manager::TEXT,
|
|
'default' => esc_html__( 'Click Here', 'elementor-pro' ),
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
'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_tab();
|
|
|
|
$this->start_controls_tab( 'side_b_background_tab', [ 'label' => esc_html__( 'Background', 'elementor-pro' ) ] );
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Background::get_type(),
|
|
[
|
|
'name' => 'background_b',
|
|
'types' => [ 'classic', 'gradient' ],
|
|
'selector' => '{{WRAPPER}} .elementor-flip-box__back',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'background_overlay_b',
|
|
[
|
|
'label' => esc_html__( 'Background Overlay', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'default' => '',
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-flip-box__back .elementor-flip-box__layer__overlay' => 'background-color: {{VALUE}};',
|
|
],
|
|
'separator' => 'before',
|
|
'condition' => [
|
|
'background_b_image[id]!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Css_Filter::get_type(),
|
|
[
|
|
'name' => 'background_overlay_b_filters',
|
|
'selector' => '{{WRAPPER}} .elementor-flip-box__back .elementor-flip-box__layer__overlay',
|
|
'condition' => [
|
|
'background_overlay_b!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'background_overlay_b_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-flip-box__back .elementor-flip-box__layer__overlay' => 'mix-blend-mode: {{VALUE}}',
|
|
],
|
|
'condition' => [
|
|
'background_overlay_b!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_tab();
|
|
|
|
$this->end_controls_tabs();
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'section_box_settings',
|
|
[
|
|
'label' => esc_html__( 'Settings', 'elementor-pro' ),
|
|
]
|
|
);
|
|
|
|
$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',
|
|
'p' => 'p',
|
|
],
|
|
'default' => 'h3',
|
|
]
|
|
);
|
|
|
|
$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',
|
|
'p' => 'p',
|
|
],
|
|
'default' => 'div',
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'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,
|
|
],
|
|
],
|
|
'separator' => 'before',
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-flip-box' => 'height: {{SIZE}}{{UNIT}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'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,
|
|
],
|
|
],
|
|
'separator' => 'after',
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-flip-box__layer, {{WRAPPER}} .elementor-flip-box__layer__overlay' => 'border-radius: {{SIZE}}{{UNIT}}',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'flip_effect',
|
|
[
|
|
'label' => esc_html__( 'Flip Effect', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'default' => 'flip',
|
|
'options' => [
|
|
'flip' => 'Flip',
|
|
'slide' => 'Slide',
|
|
'push' => 'Push',
|
|
'zoom-in' => 'Zoom In',
|
|
'zoom-out' => 'Zoom Out',
|
|
'fade' => 'Fade',
|
|
],
|
|
'prefix_class' => 'elementor-flip-box--effect-',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'flip_direction',
|
|
[
|
|
'label' => esc_html__( 'Flip Direction', 'elementor-pro' ),
|
|
'type' => Controls_Manager::CHOOSE,
|
|
'default' => 'up',
|
|
'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',
|
|
],
|
|
'up' => [
|
|
'title' => esc_html__( 'Top', 'elementor-pro' ),
|
|
'icon' => 'eicon-v-align-top',
|
|
],
|
|
'down' => [
|
|
'title' => esc_html__( 'Bottom', 'elementor-pro' ),
|
|
'icon' => 'eicon-v-align-bottom',
|
|
],
|
|
],
|
|
'toggle' => false,
|
|
'condition' => [
|
|
'flip_effect!' => [
|
|
'fade',
|
|
'zoom-in',
|
|
'zoom-out',
|
|
],
|
|
],
|
|
'prefix_class' => 'elementor-flip-box--direction-',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'flip_3d',
|
|
[
|
|
'label' => esc_html__( '3D Depth', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SWITCHER,
|
|
'label_on' => esc_html__( 'On', 'elementor-pro' ),
|
|
'label_off' => esc_html__( 'Off', 'elementor-pro' ),
|
|
'return_value' => 'elementor-flip-box--3d',
|
|
'default' => '',
|
|
'prefix_class' => '',
|
|
'condition' => [
|
|
'flip_effect' => 'flip',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'section_style_a',
|
|
[
|
|
'label' => esc_html__( 'Front', 'elementor-pro' ),
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'padding_a',
|
|
[
|
|
'label' => esc_html__( 'Padding', 'elementor-pro' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => [ 'px', '%', 'em', 'rem', 'vw', 'custom' ],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-flip-box__front .elementor-flip-box__layer__overlay' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'alignment_a',
|
|
[
|
|
'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-flip-box__front .elementor-flip-box__layer__overlay' => 'text-align: {{VALUE}}',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'vertical_position_a',
|
|
[
|
|
'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',
|
|
],
|
|
],
|
|
'selectors_dictionary' => [
|
|
'top' => 'flex-start',
|
|
'middle' => 'center',
|
|
'bottom' => 'flex-end',
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-flip-box__front .elementor-flip-box__layer__overlay' => 'justify-content: {{VALUE}}',
|
|
],
|
|
'separator' => 'after',
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Border::get_type(),
|
|
[
|
|
'name' => 'border_a',
|
|
'selector' => '{{WRAPPER}} .elementor-flip-box__front',
|
|
'separator' => 'before',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'heading_image_style',
|
|
[
|
|
'type' => Controls_Manager::HEADING,
|
|
'label' => esc_html__( 'Image', 'elementor-pro' ),
|
|
'condition' => [
|
|
'graphic_element' => 'image',
|
|
],
|
|
'separator' => 'before',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'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-flip-box__image' => 'margin-bottom: {{SIZE}}{{UNIT}};',
|
|
],
|
|
'condition' => [
|
|
'graphic_element' => 'image',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'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-flip-box__image img' => 'width: {{SIZE}}{{UNIT}}',
|
|
],
|
|
'condition' => [
|
|
'graphic_element' => 'image',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'image_opacity',
|
|
[
|
|
'label' => esc_html__( 'Opacity', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'default' => [
|
|
'size' => 1,
|
|
],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 1,
|
|
'min' => 0.10,
|
|
'step' => 0.01,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-flip-box__image' => 'opacity: {{SIZE}};',
|
|
],
|
|
'condition' => [
|
|
'graphic_element' => 'image',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Border::get_type(),
|
|
[
|
|
'name' => 'image_border',
|
|
'selector' => '{{WRAPPER}} .elementor-flip-box__image img',
|
|
'condition' => [
|
|
'graphic_element' => 'image',
|
|
],
|
|
'separator' => 'before',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'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-flip-box__image img' => 'border-radius: {{SIZE}}{{UNIT}}',
|
|
],
|
|
'condition' => [
|
|
'graphic_element' => 'image',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'heading_icon_style',
|
|
[
|
|
'type' => Controls_Manager::HEADING,
|
|
'label' => esc_html__( 'Icon', 'elementor-pro' ),
|
|
'condition' => [
|
|
'graphic_element' => 'icon',
|
|
],
|
|
'separator' => 'before',
|
|
]
|
|
);
|
|
|
|
$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 svg, {{WRAPPER}} .elementor-view-default .elementor-icon svg' => 'fill: {{VALUE}}; border-color: {{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}};',
|
|
'{{WRAPPER}} .elementor-icon svg' => 'width: {{SIZE}}{{UNIT}};',
|
|
],
|
|
'condition' => [
|
|
'graphic_element' => 'icon',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'icon_padding',
|
|
[
|
|
'label' => esc_html__( 'Icon Padding', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-icon' => 'padding: {{SIZE}}{{UNIT}};',
|
|
],
|
|
'range' => [
|
|
'em' => [
|
|
'min' => 0,
|
|
'max' => 5,
|
|
],
|
|
],
|
|
'condition' => [
|
|
'graphic_element' => 'icon',
|
|
'icon_view!' => 'default',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'icon_rotate',
|
|
[
|
|
'label' => esc_html__( 'Icon Rotate', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'deg', 'grad', 'rad', 'turn' ],
|
|
'default' => [
|
|
'size' => 0,
|
|
'unit' => 'deg',
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-icon i' => 'transform: rotate({{SIZE}}{{UNIT}});',
|
|
'{{WRAPPER}} .elementor-icon svg' => 'transform: rotate({{SIZE}}{{UNIT}});',
|
|
],
|
|
'condition' => [
|
|
'graphic_element' => 'icon',
|
|
],
|
|
]
|
|
);
|
|
|
|
$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->add_control(
|
|
'heading_title_style_a',
|
|
[
|
|
'type' => Controls_Manager::HEADING,
|
|
'label' => esc_html__( 'Title', 'elementor-pro' ),
|
|
'separator' => 'before',
|
|
'condition' => [
|
|
'title_text_a!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'title_spacing_a',
|
|
[
|
|
'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-flip-box__front .elementor-flip-box__layer__title' => 'margin-bottom: {{SIZE}}{{UNIT}};',
|
|
],
|
|
'condition' => [
|
|
'description_text_a!' => '',
|
|
'title_text_a!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'title_color_a',
|
|
[
|
|
'label' => esc_html__( 'Text Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-flip-box__front .elementor-flip-box__layer__title' => 'color: {{VALUE}}',
|
|
|
|
],
|
|
'condition' => [
|
|
'title_text_a!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Typography::get_type(),
|
|
[
|
|
'name' => 'title_typography_a',
|
|
'global' => [
|
|
'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
|
|
],
|
|
'selector' => '{{WRAPPER}} .elementor-flip-box__front .elementor-flip-box__layer__title',
|
|
'condition' => [
|
|
'title_text_a!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Text_Stroke::get_type(),
|
|
[
|
|
'name' => 'text_stroke',
|
|
'selector' => '{{WRAPPER}} .elementor-flip-box__front .elementor-flip-box__layer__title',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'heading_description_style_a',
|
|
[
|
|
'type' => Controls_Manager::HEADING,
|
|
'label' => esc_html__( 'Description', 'elementor-pro' ),
|
|
'separator' => 'before',
|
|
'condition' => [
|
|
'description_text_a!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'description_color_a',
|
|
[
|
|
'label' => esc_html__( 'Text Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-flip-box__front .elementor-flip-box__layer__description' => 'color: {{VALUE}}',
|
|
|
|
],
|
|
'condition' => [
|
|
'description_text_a!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Typography::get_type(),
|
|
[
|
|
'name' => 'description_typography_a',
|
|
'global' => [
|
|
'default' => Global_Typography::TYPOGRAPHY_TEXT,
|
|
],
|
|
'selector' => '{{WRAPPER}} .elementor-flip-box__front .elementor-flip-box__layer__description',
|
|
'condition' => [
|
|
'description_text_a!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'section_style_b',
|
|
[
|
|
'label' => esc_html__( 'Back', 'elementor-pro' ),
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'padding_b',
|
|
[
|
|
'label' => esc_html__( 'Padding', 'elementor-pro' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => [ 'px', '%', 'em', 'rem', 'vw', 'custom' ],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-flip-box__back .elementor-flip-box__layer__overlay' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'alignment_b',
|
|
[
|
|
'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-flip-box__back .elementor-flip-box__layer__overlay' => 'text-align: {{VALUE}}',
|
|
'{{WRAPPER}} .elementor-flip-box__button' => 'margin-{{VALUE}}: 0',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'vertical_position_b',
|
|
[
|
|
'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',
|
|
],
|
|
],
|
|
'selectors_dictionary' => [
|
|
'top' => 'flex-start',
|
|
'middle' => 'center',
|
|
'bottom' => 'flex-end',
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-flip-box__back .elementor-flip-box__layer__overlay' => 'justify-content: {{VALUE}}',
|
|
],
|
|
'separator' => 'after',
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Border::get_type(),
|
|
[
|
|
'name' => 'border_b',
|
|
'selector' => '{{WRAPPER}} .elementor-flip-box__back',
|
|
'separator' => 'before',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'heading_title_style_b',
|
|
[
|
|
'type' => Controls_Manager::HEADING,
|
|
'label' => esc_html__( 'Title', 'elementor-pro' ),
|
|
'separator' => 'before',
|
|
'condition' => [
|
|
'title_text_b!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'title_spacing_b',
|
|
[
|
|
'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-flip-box__back .elementor-flip-box__layer__title' => 'margin-bottom: {{SIZE}}{{UNIT}};',
|
|
],
|
|
'condition' => [
|
|
'title_text_b!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'title_color_b',
|
|
[
|
|
'label' => esc_html__( 'Text Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-flip-box__back .elementor-flip-box__layer__title' => 'color: {{VALUE}}',
|
|
|
|
],
|
|
'condition' => [
|
|
'title_text_b!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Typography::get_type(),
|
|
[
|
|
'name' => 'title_typography_b',
|
|
'global' => [
|
|
'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
|
|
],
|
|
'selector' => '{{WRAPPER}} .elementor-flip-box__back .elementor-flip-box__layer__title',
|
|
'condition' => [
|
|
'title_text_b!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Text_Stroke::get_type(),
|
|
[
|
|
'name' => 'text_stroke_b',
|
|
'selector' => '{{WRAPPER}} .elementor-flip-box__back .elementor-flip-box__layer__title',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'heading_description_style_b',
|
|
[
|
|
'type' => Controls_Manager::HEADING,
|
|
'label' => esc_html__( 'Description', 'elementor-pro' ),
|
|
'separator' => 'before',
|
|
'condition' => [
|
|
'description_text_b!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'description_spacing_b',
|
|
[
|
|
'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-flip-box__back .elementor-flip-box__layer__description' => 'margin-bottom: {{SIZE}}{{UNIT}};',
|
|
],
|
|
'condition' => [
|
|
'description_text_b!' => '',
|
|
'button_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'description_color_b',
|
|
[
|
|
'label' => esc_html__( 'Text Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-flip-box__back .elementor-flip-box__layer__description' => 'color: {{VALUE}}',
|
|
|
|
],
|
|
'condition' => [
|
|
'description_text_b!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Typography::get_type(),
|
|
[
|
|
'name' => 'description_typography_b',
|
|
'global' => [
|
|
'default' => Global_Typography::TYPOGRAPHY_TEXT,
|
|
],
|
|
'selector' => '{{WRAPPER}} .elementor-flip-box__back .elementor-flip-box__layer__description',
|
|
'condition' => [
|
|
'description_text_b!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'heading_button',
|
|
[
|
|
'type' => Controls_Manager::HEADING,
|
|
'label' => esc_html__( 'Button', 'elementor-pro' ),
|
|
'separator' => 'before',
|
|
'condition' => [
|
|
'button_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_size',
|
|
[
|
|
'label' => esc_html__( 'Size', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'default' => 'sm',
|
|
'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' ),
|
|
],
|
|
'condition' => [
|
|
'button_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Typography::get_type(),
|
|
[
|
|
'name' => 'button_typography',
|
|
'selector' => '{{WRAPPER}} .elementor-flip-box__button',
|
|
'global' => [
|
|
'default' => Global_Typography::TYPOGRAPHY_ACCENT,
|
|
],
|
|
'condition' => [
|
|
'button_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->start_controls_tabs( 'button_tabs' );
|
|
|
|
$this->start_controls_tab( 'normal',
|
|
[
|
|
'label' => esc_html__( 'Normal', 'elementor-pro' ),
|
|
'condition' => [
|
|
'button_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_text_color',
|
|
[
|
|
'label' => esc_html__( 'Text Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-flip-box__button' => 'color: {{VALUE}};',
|
|
],
|
|
'condition' => [
|
|
'button_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Background::get_type(),
|
|
[
|
|
'name' => 'button_background',
|
|
'types' => [ 'classic', 'gradient' ],
|
|
'exclude' => [ 'image' ],
|
|
'selector' => '{{WRAPPER}} .elementor-flip-box__button',
|
|
'fields_options' => [
|
|
'background' => [
|
|
'default' => 'classic',
|
|
],
|
|
],
|
|
'condition' => [
|
|
'button_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_border_color',
|
|
[
|
|
'label' => esc_html__( 'Border Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-flip-box__button' => 'border-color: {{VALUE}};',
|
|
],
|
|
'condition' => [
|
|
'button_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_tab();
|
|
|
|
$this->start_controls_tab(
|
|
'hover',
|
|
[
|
|
'label' => esc_html__( 'Hover', 'elementor-pro' ),
|
|
'condition' => [
|
|
'button_text!' => '',
|
|
],
|
|
'condition' => [
|
|
'button_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_hover_text_color',
|
|
[
|
|
'label' => esc_html__( 'Text Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-flip-box__button:hover' => 'color: {{VALUE}};',
|
|
],
|
|
'condition' => [
|
|
'button_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Background::get_type(),
|
|
[
|
|
'name' => 'button_hover_background',
|
|
'types' => [ 'classic', 'gradient' ],
|
|
'exclude' => [ 'image' ],
|
|
'selector' => '{{WRAPPER}} .elementor-flip-box__button:hover',
|
|
'fields_options' => [
|
|
'background' => [
|
|
'default' => 'classic',
|
|
],
|
|
],
|
|
'condition' => [
|
|
'button_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_hover_border_color',
|
|
[
|
|
'label' => esc_html__( 'Border Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-flip-box__button:hover' => 'border-color: {{VALUE}};',
|
|
],
|
|
'condition' => [
|
|
'button_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_hover_transition_duration',
|
|
[
|
|
'label' => esc_html__( 'Transition Duration', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 's', 'ms', 'custom' ],
|
|
'default' => [
|
|
'unit' => 'ms',
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-flip-box__button' => 'transition-duration: {{SIZE}}{{UNIT}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$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-flip-box__button' => 'border-width: {{SIZE}}{{UNIT}};',
|
|
],
|
|
'separator' => 'before',
|
|
'condition' => [
|
|
'button_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$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-flip-box__button' => 'border-radius: {{SIZE}}{{UNIT}};',
|
|
],
|
|
'separator' => 'after',
|
|
'condition' => [
|
|
'button_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$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'] );
|
|
$migration_allowed = Icons_Manager::is_migration_allowed();
|
|
$this->add_render_attribute( 'button', 'class', [
|
|
'elementor-flip-box__button',
|
|
'elementor-button',
|
|
'elementor-size-' . $settings['button_size'],
|
|
] );
|
|
|
|
$this->add_render_attribute( 'wrapper', 'class', 'elementor-flip-box__layer elementor-flip-box__back' );
|
|
|
|
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'] );
|
|
}
|
|
|
|
if ( 'icon' === $settings['graphic_element'] ) {
|
|
$this->add_render_attribute( 'icon-wrapper', 'class', 'elementor-icon-wrapper' );
|
|
$this->add_render_attribute( 'icon-wrapper', 'class', 'elementor-view-' . $settings['icon_view'] );
|
|
if ( 'default' != $settings['icon_view'] ) {
|
|
$this->add_render_attribute( 'icon-wrapper', 'class', 'elementor-shape-' . $settings['icon_shape'] );
|
|
}
|
|
|
|
if ( ! isset( $settings['icon'] ) && ! $migration_allowed ) {
|
|
// add old default
|
|
$settings['icon'] = 'fa fa-star';
|
|
}
|
|
|
|
if ( ! empty( $settings['icon'] ) ) {
|
|
$this->add_render_attribute( 'icon', 'class', $settings['icon'] );
|
|
}
|
|
}
|
|
|
|
$has_icon = ! empty( $settings['icon'] ) || ! empty( $settings['selected_icon'] );
|
|
$migrated = isset( $settings['__fa4_migrated']['selected_icon'] );
|
|
$is_new = empty( $settings['icon'] ) && $migration_allowed;
|
|
|
|
?>
|
|
<div class="elementor-flip-box" tabindex="0">
|
|
<div class="elementor-flip-box__layer elementor-flip-box__front">
|
|
<div class="elementor-flip-box__layer__overlay">
|
|
<div class="elementor-flip-box__layer__inner">
|
|
<?php if ( 'image' === $settings['graphic_element'] && ! empty( $settings['image']['url'] ) ) : ?>
|
|
<div class="elementor-flip-box__image">
|
|
<?php Group_Control_Image_Size::print_attachment_image_html( $settings ); ?>
|
|
</div>
|
|
<?php elseif ( 'icon' === $settings['graphic_element'] && $has_icon ) : ?>
|
|
<div <?php $this->print_render_attribute_string( 'icon-wrapper' ); ?>>
|
|
<div class="elementor-icon">
|
|
<?php if ( $is_new || $migrated ) :
|
|
Icons_Manager::render_icon( $settings['selected_icon'] );
|
|
else : ?>
|
|
<i <?php $this->print_render_attribute_string( 'icon' ); ?>></i>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( ! empty( $settings['title_text_a'] ) ) : ?>
|
|
<<?php Utils::print_validated_html_tag( $title_tag ); ?> class="elementor-flip-box__layer__title">
|
|
<?php $this->print_unescaped_setting( 'title_text_a' ); ?>
|
|
</<?php Utils::print_validated_html_tag( $title_tag ); ?>>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( ! empty( $settings['description_text_a'] ) ) : ?>
|
|
<<?php Utils::print_validated_html_tag( $description_tag ); ?> class="elementor-flip-box__layer__description">
|
|
<?php $this->print_unescaped_setting( 'description_text_a' ); ?>
|
|
</<?php Utils::print_validated_html_tag( $description_tag ); ?>>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<<?php Utils::print_validated_html_tag( $wrapper_tag ); ?> <?php $this->print_render_attribute_string( 'wrapper' ); ?>>
|
|
<div class="elementor-flip-box__layer__overlay">
|
|
<div class="elementor-flip-box__layer__inner">
|
|
<?php if ( ! empty( $settings['title_text_b'] ) ) : ?>
|
|
<<?php Utils::print_validated_html_tag( $title_tag ); ?> class="elementor-flip-box__layer__title">
|
|
<?php $this->print_unescaped_setting( 'title_text_b' ); ?>
|
|
</<?php Utils::print_validated_html_tag( $title_tag ); ?>>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( ! empty( $settings['description_text_b'] ) ) : ?>
|
|
<<?php Utils::print_validated_html_tag( $description_tag ); ?> class="elementor-flip-box__layer__description">
|
|
<?php $this->print_unescaped_setting( 'description_text_b' ); ?>
|
|
</<?php Utils::print_validated_html_tag( $description_tag ); ?>>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( ! empty( $settings['button_text'] ) ) : ?>
|
|
<<?php Utils::print_validated_html_tag( $button_tag ); ?> <?php $this->print_render_attribute_string( 'button' ); ?>>
|
|
<?php $this->print_unescaped_setting( 'button_text' ); ?>
|
|
</<?php Utils::print_validated_html_tag( $button_tag ); ?>>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
</<?php Utils::print_validated_html_tag( $wrapper_tag ); ?>>
|
|
</div>
|
|
<?php
|
|
}
|
|
|
|
/**
|
|
* Render Flip Box 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 btnClasses = 'elementor-flip-box__button elementor-button elementor-size-' + settings.button_size;
|
|
|
|
if ( 'image' === settings.graphic_element && '' !== settings.image.url ) {
|
|
var image = {
|
|
id: settings.image.id,
|
|
url: settings.image.url,
|
|
size: settings.image_size,
|
|
dimension: settings.image_custom_dimension,
|
|
model: view.getEditModel()
|
|
};
|
|
|
|
var imageUrl = elementor.imagesManager.getImageUrl( image );
|
|
}
|
|
|
|
var wrapperTag = 'div',
|
|
buttonTag = 'a',
|
|
titleTag = elementor.helpers.validateHTMLTag( settings.title_tag ),
|
|
descriptionTag = elementor.helpers.validateHTMLTag( settings.description_tag );
|
|
|
|
if ( 'box' === settings.link_click ) {
|
|
wrapperTag = 'a';
|
|
buttonTag = 'span';
|
|
}
|
|
|
|
if ( 'icon' === settings.graphic_element ) {
|
|
var iconWrapperClasses = 'elementor-icon-wrapper';
|
|
iconWrapperClasses += ' elementor-view-' + settings.icon_view;
|
|
if ( 'default' !== settings.icon_view ) {
|
|
iconWrapperClasses += ' elementor-shape-' + settings.icon_shape;
|
|
}
|
|
}
|
|
var hasIcon = settings.icon || settings.selected_icon,
|
|
iconHTML = elementor.helpers.renderIcon( view, settings.selected_icon, { 'aria-hidden': true }, 'i' , 'object' ),
|
|
migrated = elementor.helpers.isIconMigrated( settings, 'selected_icon' );
|
|
#>
|
|
|
|
<div class="elementor-flip-box" tabindex="0">
|
|
<div class="elementor-flip-box__layer elementor-flip-box__front">
|
|
<div class="elementor-flip-box__layer__overlay">
|
|
<div class="elementor-flip-box__layer__inner">
|
|
<# if ( 'image' === settings.graphic_element && '' !== settings.image.url ) { #>
|
|
<div class="elementor-flip-box__image">
|
|
<img src="{{ imageUrl }}">
|
|
</div>
|
|
<# } else if ( 'icon' === settings.graphic_element && hasIcon ) { #>
|
|
<div class="{{ iconWrapperClasses }}" >
|
|
<div class="elementor-icon">
|
|
<# if ( iconHTML && iconHTML.rendered && ( ! settings.icon || migrated ) ) { #>
|
|
{{{ iconHTML.value }}}
|
|
<# } else { #>
|
|
<i class="{{ settings.icon }}"></i>
|
|
<# } #>
|
|
</div>
|
|
</div>
|
|
<# } #>
|
|
|
|
<# if ( settings.title_text_a ) { #>
|
|
<{{ titleTag }} class="elementor-flip-box__layer__title">{{{ settings.title_text_a }}}</{{ titleTag }}>
|
|
<# } #>
|
|
|
|
<# if ( settings.description_text_a ) { #>
|
|
<{{ descriptionTag }} class="elementor-flip-box__layer__description">{{{ settings.description_text_a }}}</{{ descriptionTag }}>
|
|
<# } #>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<{{ wrapperTag }} class="elementor-flip-box__layer elementor-flip-box__back">
|
|
<div class="elementor-flip-box__layer__overlay">
|
|
<div class="elementor-flip-box__layer__inner">
|
|
<# if ( settings.title_text_b ) { #>
|
|
<{{ titleTag }} class="elementor-flip-box__layer__title">{{{ settings.title_text_b }}}</{{ titleTag }}>
|
|
<# } #>
|
|
|
|
<# if ( settings.description_text_b ) { #>
|
|
<{{ descriptionTag }} class="elementor-flip-box__layer__description">{{{ settings.description_text_b }}}</{{ descriptionTag }}>
|
|
<# } #>
|
|
|
|
<# if ( settings.button_text ) { #>
|
|
<{{ buttonTag }} href="#" class="{{ btnClasses }}">{{{ settings.button_text }}}</{{ buttonTag }}>
|
|
<# } #>
|
|
</div>
|
|
</div>
|
|
</{{ wrapperTag }}>
|
|
</div>
|
|
<?php
|
|
}
|
|
}
|