734 lines
20 KiB
PHP
734 lines
20 KiB
PHP
<?php
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
use Elementor\Controls_Manager;
|
|
use Elementor\Scheme_Color;
|
|
use Elementor\Widget_Base;
|
|
use Elementor\Group_Control_Border;
|
|
use Elementor\Group_Control_Box_Shadow;
|
|
use Elementor\Icons_Manager;
|
|
use Elementor\Scheme_Typography;
|
|
use Elementor\Group_Control_Typography;
|
|
|
|
class Attesa_Extra_Double_Button extends Widget_Base {
|
|
public function get_name() {
|
|
return 'attesa-extra-double-button';
|
|
}
|
|
public function get_title() {
|
|
return __( 'Double Button', 'attesa-extra' );
|
|
}
|
|
public function get_icon() {
|
|
return 'awp-icon eicon-button';
|
|
}
|
|
public function get_categories() {
|
|
return [ 'attesa-elements' ];
|
|
}
|
|
public function get_style_depends() {
|
|
return [ 'awp-double-button' ];
|
|
}
|
|
protected function _register_controls() {
|
|
|
|
$this->start_controls_section(
|
|
'section_double_first_button',
|
|
[
|
|
'label' => __( 'First Button', 'attesa-extra' ),
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_first_button_text',
|
|
[
|
|
'label' => __( 'Button Text', 'attesa-extra' ),
|
|
'type' => Controls_Manager::TEXT,
|
|
'label_block' => true,
|
|
'default' => __( 'First', 'attesa-extra' ),
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_first_button_link',
|
|
[
|
|
'label' => __( 'Link', 'attesa-extra' ),
|
|
'type' => Controls_Manager::URL,
|
|
'default' => [
|
|
'url' => '#',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_first_button_icon',
|
|
[
|
|
'label' => __( 'Icon', 'attesa-extra' ),
|
|
'type' => Controls_Manager::ICONS,
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_first_button_icon_position',
|
|
[
|
|
'label' => __( 'Icon Position', 'attesa-extra' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'default' => 'before',
|
|
'options' => [
|
|
'before' => __( 'Before', 'attesa-extra' ),
|
|
'after' => __( 'After', 'attesa-extra' ),
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'section_double_first_button_icon_spacing',
|
|
[
|
|
'label' => __( 'Icon Spacing', 'attesa-extra' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'default' => [
|
|
'size' => 0,
|
|
],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 50,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .awp-first-button-icon.awp-position-before' => 'margin-right: {{SIZE}}{{UNIT}};',
|
|
'{{WRAPPER}} .awp-first-button-icon.awp-position-after' => 'margin-left: {{SIZE}}{{UNIT}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->start_controls_tabs( 'section_double_first_button_tabs' );
|
|
|
|
$this->start_controls_tab(
|
|
'section_double_first_button_tab_normal',
|
|
[
|
|
'label' => __( 'Normal', 'attesa-extra' ),
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_first_button_color',
|
|
[
|
|
'label' => __( 'Color', 'attesa-extra' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'default' => '#404040',
|
|
'selectors' => [
|
|
'{{WRAPPER}} .awp-first-button-link' => 'color: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_first_button_background',
|
|
[
|
|
'label' => __( 'Background', 'attesa-extra' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'default' => '#f06292',
|
|
'selectors' => [
|
|
'{{WRAPPER}} .awp-first-button-link' => 'background-color: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_tab();
|
|
|
|
$this->start_controls_tab(
|
|
'section_double_first_button_tab_hover',
|
|
[
|
|
'label' => __( 'Hover', 'attesa-extra' ),
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_first_button_color_hover',
|
|
[
|
|
'label' => __( 'Color', 'attesa-extra' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'default' => '#404040',
|
|
'selectors' => [
|
|
'{{WRAPPER}} .awp-first-button-link:hover' => 'color: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_first_button_background_hover',
|
|
[
|
|
'label' => __( 'Background', 'attesa-extra' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'default' => '#f06292',
|
|
'selectors' => [
|
|
'{{WRAPPER}} .awp-first-button-link:hover' => 'background-color: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_tab();
|
|
|
|
$this->end_controls_tabs();
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'section_double_second_button',
|
|
[
|
|
'label' => __( 'Second Button', 'attesa-extra' ),
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_second_button_text',
|
|
[
|
|
'label' => __( 'Button Text', 'attesa-extra' ),
|
|
'type' => Controls_Manager::TEXT,
|
|
'label_block' => true,
|
|
'default' => __( 'Second', 'attesa-extra' ),
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_second_button_link',
|
|
[
|
|
'label' => __( 'Link', 'attesa-extra' ),
|
|
'type' => Controls_Manager::URL,
|
|
'default' => [
|
|
'url' => '#',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_second_button_icon',
|
|
[
|
|
'label' => __( 'Icon', 'attesa-extra' ),
|
|
'type' => Controls_Manager::ICONS,
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_second_button_icon_position',
|
|
[
|
|
'label' => __( 'Icon Position', 'attesa-extra' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'default' => 'before',
|
|
'options' => [
|
|
'before' => __( 'Before', 'attesa-extra' ),
|
|
'after' => __( 'After', 'attesa-extra' ),
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'section_double_second_button_icon_spacing',
|
|
[
|
|
'label' => __( 'Icon Spacing', 'attesa-extra' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'default' => [
|
|
'size' => 0,
|
|
],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 50,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .awp-second-button-icon.awp-position-before' => 'margin-right: {{SIZE}}{{UNIT}};',
|
|
'{{WRAPPER}} .awp-second-button-icon.awp-position-after' => 'margin-left: {{SIZE}}{{UNIT}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->start_controls_tabs( 'section_double_second_button_tabs' );
|
|
|
|
$this->start_controls_tab(
|
|
'section_double_second_button_tab_normal',
|
|
[
|
|
'label' => __( 'Normal', 'attesa-extra' ),
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_second_button_color',
|
|
[
|
|
'label' => __( 'Color', 'attesa-extra' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'default' => '#f06292',
|
|
'selectors' => [
|
|
'{{WRAPPER}} .awp-second-button-link' => 'color: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_second_button_background',
|
|
[
|
|
'label' => __( 'Background', 'attesa-extra' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'default' => '#404040',
|
|
'selectors' => [
|
|
'{{WRAPPER}} .awp-second-button-link' => 'background-color: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_tab();
|
|
|
|
$this->start_controls_tab(
|
|
'section_double_second_button_tab_hover',
|
|
[
|
|
'label' => __( 'Hover', 'attesa-extra' ),
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_second_button_color_hover',
|
|
[
|
|
'label' => __( 'Color', 'attesa-extra' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'default' => '#f06292',
|
|
'selectors' => [
|
|
'{{WRAPPER}} .awp-second-button-link:hover' => 'color: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_second_button_background_hover',
|
|
[
|
|
'label' => __( 'Background', 'attesa-extra' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'default' => '#404040',
|
|
'selectors' => [
|
|
'{{WRAPPER}} .awp-second-button-link:hover' => 'background-color: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_tabs();
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'section_double_divider',
|
|
[
|
|
'label' => __( 'Divider', 'attesa-extra' ),
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_divider_show',
|
|
[
|
|
'label' => __( 'Show divider', 'attesa-extra' ),
|
|
'type' => Controls_Manager::SWITCHER,
|
|
'default' => 'yes',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_divider_choose',
|
|
[
|
|
'label' => __( 'Show', 'attesa-extra' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'default' => 'icon',
|
|
'options' => [
|
|
'icon' => __( 'Icon', 'attesa-extra' ),
|
|
'text' => __( 'Text', 'attesa-extra' ),
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_divider_icon',
|
|
[
|
|
'label' => __( 'Icon', 'attesa-extra' ),
|
|
'type' => Controls_Manager::ICONS,
|
|
'default' => [
|
|
'value' => 'far fa-lemon',
|
|
'library' => 'regular',
|
|
],
|
|
'condition' => [
|
|
'section_double_divider_choose' => 'icon',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'section_double_divider_icon_size',
|
|
[
|
|
'label' => __( 'Icon size', 'attesa-extra' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'default' => [
|
|
'size' => 20,
|
|
],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 100,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .awp-divider-button-content' => 'font-size: {{SIZE}}{{UNIT}};',
|
|
],
|
|
'condition' => [
|
|
'section_double_divider_choose' => 'icon',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_divider_text',
|
|
[
|
|
'label' => __( 'Text', 'attesa-extra' ),
|
|
'type' => Controls_Manager::TEXT,
|
|
'label_block' => true,
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
'condition' => [
|
|
'section_double_divider_choose' => 'text',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Typography::get_type(),
|
|
[
|
|
'name' => 'section_double_divider_text_typo',
|
|
'selector' => '{{WRAPPER}} .awp-divider-button-text',
|
|
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
|
'condition' => [
|
|
'section_double_divider_choose' => 'text',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_divider_color',
|
|
[
|
|
'label' => __( 'Color', 'attesa-extra' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'default' => '#ffffff',
|
|
'selectors' => [
|
|
'{{WRAPPER}} .awp-divider-button-content' => 'color: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'section_double_divider_background',
|
|
[
|
|
'label' => __( 'Background', 'attesa-extra' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'default' => '#bebebe',
|
|
'selectors' => [
|
|
'{{WRAPPER}} .awp-divider-button-content' => 'background-color: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'section_double_button_style',
|
|
[
|
|
'label' => __( 'Box Style', 'attesa-extra' ),
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
'show_label' => false,
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'section_double_button_align',
|
|
[
|
|
'label' => __( 'Alignment', 'attesa-extra' ),
|
|
'type' => Controls_Manager::CHOOSE,
|
|
'options' => [
|
|
'flex-start' => [
|
|
'title' => __( 'Left', 'attesa-extra' ),
|
|
'icon' => 'fa fa-align-left',
|
|
],
|
|
'center' => [
|
|
'title' => __( 'Center', 'attesa-extra' ),
|
|
'icon' => 'fa fa-align-center',
|
|
],
|
|
'flex-end' => [
|
|
'title' => __( 'Right', 'attesa-extra' ),
|
|
'icon' => 'fa fa-align-right',
|
|
],
|
|
],
|
|
'default' => 'flex-start',
|
|
'toggle' => true,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .attesa-extra-double-button-wrap' => 'justify-content: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'section_double_button_padding',
|
|
[
|
|
'label' => __( 'Padding', 'attesa-extra' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => [ 'px', 'em' ],
|
|
'desktop_default' => [
|
|
'top' => 15,
|
|
'right' => 35,
|
|
'bottom' => 15,
|
|
'left' => 35,
|
|
'unit' => 'px',
|
|
'isLinked' => true,
|
|
],
|
|
'tablet_default' => [
|
|
'top' => 15,
|
|
'right' => 35,
|
|
'bottom' => 15,
|
|
'left' => 35,
|
|
'unit' => 'px',
|
|
'isLinked' => true,
|
|
],
|
|
'mobile_default' => [
|
|
'top' => 15,
|
|
'right' => 35,
|
|
'bottom' => 15,
|
|
'left' => 35,
|
|
'unit' => 'px',
|
|
'isLinked' => true,
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .awp-first-button-link' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
'{{WRAPPER}} .awp-second-button-link' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'section_double_button_border_radius',
|
|
[
|
|
'label' => __( 'Buttons Border Radius', 'attesa-extra' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => [ 'px', '%' ],
|
|
'desktop_default' => [
|
|
'top' => 5,
|
|
'right' => 5,
|
|
'bottom' => 5,
|
|
'left' => 5,
|
|
'unit' => 'px',
|
|
'isLinked' => true,
|
|
],
|
|
'tablet_default' => [
|
|
'top' => 5,
|
|
'right' => 5,
|
|
'bottom' => 5,
|
|
'left' => 5,
|
|
'unit' => 'px',
|
|
'isLinked' => true,
|
|
],
|
|
'mobile_default' => [
|
|
'top' => 5,
|
|
'right' => 5,
|
|
'bottom' => 5,
|
|
'left' => 5,
|
|
'unit' => 'px',
|
|
'isLinked' => true,
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .awp-first-button-link' => 'border-top-left-radius: {{TOP}}{{UNIT}}; border-bottom-left-radius: {{BOTTOM}}{{UNIT}} ;',
|
|
'{{WRAPPER}} .awp-second-button-link' => 'border-top-right-radius: {{LEFT}}{{UNIT}}; border-bottom-right-radius: {{RIGHT}}{{UNIT}} ;',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Typography::get_type(),
|
|
[
|
|
'name' => 'section_double_button_typo',
|
|
'selector' => '{{WRAPPER}} .awp-first-button-link, {{WRAPPER}} .awp-second-button-link',
|
|
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Box_Shadow::get_type(),
|
|
[
|
|
'name' => 'section_double_button_box_shadow',
|
|
'selector' => '{{WRAPPER}} .awp-first-button-link, {{WRAPPER}} .awp-second-button-link',
|
|
]
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'section_double_button_divider_style',
|
|
[
|
|
'label' => __( 'Divider Style', 'attesa-extra' ),
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
'show_label' => false,
|
|
'condition' => [
|
|
'section_double_divider_show' => 'yes',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'section_double_button_divider_padding',
|
|
[
|
|
'label' => __( 'Padding', 'attesa-extra' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => [ 'px', 'em' ],
|
|
'desktop_default' => [
|
|
'top' => 10,
|
|
'right' => 10,
|
|
'bottom' => 10,
|
|
'left' => 10,
|
|
'unit' => 'px',
|
|
'isLinked' => true,
|
|
],
|
|
'tablet_default' => [
|
|
'top' => 10,
|
|
'right' => 10,
|
|
'bottom' => 10,
|
|
'left' => 10,
|
|
'unit' => 'px',
|
|
'isLinked' => true,
|
|
],
|
|
'mobile_default' => [
|
|
'top' => 10,
|
|
'right' => 10,
|
|
'bottom' => 10,
|
|
'left' => 10,
|
|
'unit' => 'px',
|
|
'isLinked' => true,
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .awp-divider-button-content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'section_double_button_divider_border_radius',
|
|
[
|
|
'label' => __( 'Divider Border Radius', 'attesa-extra' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => [ 'px', '%' ],
|
|
'desktop_default' => [
|
|
'top' => 50,
|
|
'right' => 50,
|
|
'bottom' => 50,
|
|
'left' => 50,
|
|
'unit' => '%',
|
|
'isLinked' => true,
|
|
],
|
|
'tablet_default' => [
|
|
'top' => 50,
|
|
'right' => 50,
|
|
'bottom' => 50,
|
|
'left' => 50,
|
|
'unit' => '%',
|
|
'isLinked' => true,
|
|
],
|
|
'mobile_default' => [
|
|
'top' => 50,
|
|
'right' => 50,
|
|
'bottom' => 50,
|
|
'left' => 50,
|
|
'unit' => '%',
|
|
'isLinked' => true,
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .awp-divider-button-content' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Box_Shadow::get_type(),
|
|
[
|
|
'name' => 'section_double_button_divider_box_shadow',
|
|
'selector' => '{{WRAPPER}} .awp-divider-button-content',
|
|
]
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
}
|
|
|
|
protected function render() {
|
|
$settings = $this->get_settings_for_display();
|
|
$first_text = $settings['section_double_first_button_text'];
|
|
$first_link = $settings['section_double_first_button_link'];
|
|
$second_text = $settings['section_double_second_button_text'];
|
|
$second_link = $settings['section_double_second_button_link'];
|
|
$show_divider = $settings['section_double_divider_show'];
|
|
?>
|
|
<div id="awp-double-button" class="attesa-extra-double-button-wrap">
|
|
<div class="awp-double-main-button-container">
|
|
<div class="awp-first-button-content">
|
|
<?php if ($first_link['url']): ?>
|
|
<?php
|
|
$target = $first_link['is_external'] ? ' target="_blank"' : '';
|
|
$nofollow = $first_link['nofollow'] ? ' rel="nofollow"' : '';
|
|
?>
|
|
<a class="awp-first-button-link" <?php echo $target . $nofollow ; ?> href="<?php echo esc_url($first_link['url']); ?>">
|
|
<span class="awp-double-button-container">
|
|
<?php if($settings['section_double_first_button_icon'] && $settings['section_double_first_button_icon_position'] == 'before'): ?>
|
|
<span class="awp-first-button-icon awp-position-before">
|
|
<?php Icons_Manager::render_icon( $settings['section_double_first_button_icon'], [ 'aria-hidden' => 'true' ] ); ?>
|
|
</span>
|
|
<?php endif; ?>
|
|
<span class="awp-double-button-text"><?php echo esc_html($first_text); ?></span>
|
|
<?php if($settings['section_double_first_button_icon'] && $settings['section_double_first_button_icon_position'] == 'after'): ?>
|
|
<span class="awp-first-button-icon awp-position-after">
|
|
<?php Icons_Manager::render_icon( $settings['section_double_first_button_icon'], [ 'aria-hidden' => 'true' ] ); ?>
|
|
</span>
|
|
<?php endif; ?>
|
|
</span>
|
|
</a>
|
|
<?php if ($show_divider == 'yes') : ?>
|
|
<div class="awp-divider-button-content">
|
|
<?php if($settings['section_double_divider_choose'] == 'text'): ?>
|
|
<span class="awp-divider-button-text"><?php echo esc_html($settings['section_double_divider_text']); ?></span>
|
|
<?php else: ?>
|
|
<span class="awp-divider-button-icon"><?php Icons_Manager::render_icon( $settings['section_double_divider_icon'], [ 'aria-hidden' => 'true' ] ); ?></span>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="awp-second-button-content">
|
|
<?php if ($second_link['url']): ?>
|
|
<?php
|
|
$target = $second_link['is_external'] ? ' target="_blank"' : '';
|
|
$nofollow = $second_link['nofollow'] ? ' rel="nofollow"' : '';
|
|
?>
|
|
<a class="awp-second-button-link" <?php echo $target . $nofollow ; ?> href="<?php echo esc_url($second_link['url']); ?>">
|
|
<span class="awp-double-button-container">
|
|
<?php if($settings['section_double_second_button_icon'] && $settings['section_double_second_button_icon_position'] == 'before'): ?>
|
|
<span class="awp-second-button-icon awp-position-before">
|
|
<?php Icons_Manager::render_icon( $settings['section_double_second_button_icon'], [ 'aria-hidden' => 'true' ] ); ?>
|
|
</span>
|
|
<?php endif; ?>
|
|
<span class="awp-double-button-text"><?php echo esc_html($second_text); ?></span>
|
|
<?php if($settings['section_double_second_button_icon'] && $settings['section_double_second_button_icon_position'] == 'after'): ?>
|
|
<span class="awp-second-button-icon awp-position-after">
|
|
<?php Icons_Manager::render_icon( $settings['section_double_second_button_icon'], [ 'aria-hidden' => 'true' ] ); ?>
|
|
</span>
|
|
<?php endif; ?>
|
|
</span>
|
|
</a>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
}
|
|
|
|
protected function _content_template() {
|
|
}
|
|
}
|