????
| Current Path : /home/degesdxb/public_html/wp-content/plugins/hoteller-elementor/widgets/ |
| Current File : /home/degesdxb/public_html/wp-content/plugins/hoteller-elementor/widgets/testimonial-slider.php |
<?php
namespace HotellerElementor\Widgets;
use Elementor\Widget_Base;
use Elementor\Controls_Manager;
use Elementor\Scheme_Color;
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
/**
* Elementor Blog Posts
*
* Elementor widget for blog posts
*
* @since 1.0.0
*/
class Hoteller_Testimonial_Slider extends Widget_Base {
/**
* Retrieve the widget name.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'hoteller-testimonial-slider';
}
/**
* Retrieve the widget title.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return __( 'Testimonial Slider', 'hoteller-elementor' );
}
/**
* Retrieve the widget icon.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'eicon-slider-vertical';
}
/**
* Retrieve the list of categories the widget belongs to.
*
* Used to determine where to display the widget in the editor.
*
* Note that currently Elementor supports only one category.
* When multiple categories passed, Elementor uses the first one.
*
* @since 1.0.0
*
* @access public
*
* @return array Widget categories.
*/
public function get_categories() {
return [ 'hoteller-theme-widgets-category' ];
}
/**
* Retrieve the list of scripts the widget depended on.
*
* Used to set scripts dependencies required to run the widget.
*
* @since 1.0.0
*
* @access public
*
* @return array Widget scripts dependencies.
*/
public function get_script_depends() {
return [ 'owl-carousel', 'hoteller-elementor' ];
}
/**
* Register the widget controls.
*
* Adds different input fields to allow the user to change and customize the widget settings.
*
* @since 1.0.0
*
* @access protected
*/
protected function _register_controls() {
$this->start_controls_section(
'section_content',
[
'label' => __( 'Content', 'hoteller-elementor' ),
]
);
/**
*
* Begin slides repeat list
*
**/
$repeater = new \Elementor\Repeater();
$repeater->add_control(
'slide_image', [
'label' => __( 'Image', 'hoteller-elementor' ),
'type' => \Elementor\Controls_Manager::MEDIA,
'label_block' => true,
]
);
$repeater->add_control(
'slide_description', [
'label' => __( 'Description', 'hoteller-elementor' ),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'label_block' => true,
]
);
$repeater->add_control(
'slide_name', [
'label' => __( 'Client Name', 'hoteller-elementor' ),
'type' => \Elementor\Controls_Manager::TEXT,
'label_block' => true,
]
);
$repeater->add_control(
'slide_desc', [
'label' => __( 'Client Description', 'hoteller-elementor' ),
'type' => \Elementor\Controls_Manager::TEXT,
'label_block' => true,
]
);
$this->add_control(
'slides',
[
'label' => __( 'Testimonials', 'hoteller-elementor' ),
'type' => \Elementor\Controls_Manager::REPEATER,
'fields' => $repeater->get_controls(),
'title_field' => '{{{ slide_name }}}',
]
);
/**
*
* End slides repeat list
*
**/
$this->add_control(
'autoplay',
[
'label' => __( 'Auto Play', 'hoteller-elementor' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'hoteller-elementor' ),
'label_off' => __( 'No', 'hoteller-elementor' ),
'return_value' => 'yes',
]
);
$this->add_control(
'timer',
[
'label' => __( 'Timer (in seconds)', 'hoteller-elementor' ),
'type' => Controls_Manager::SLIDER,
'default' => [
'size' => 8,
],
'range' => [
'px' => [
'min' => 1,
'max' => 60,
'step' => 1,
]
],
'size_units' => [ 'px' ]
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_card_style',
array(
'label' => esc_html__( 'Card', 'hoteller-elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
)
);
$this->add_control(
'margin',
[
'label' => __( 'Margin', 'hoteller-elementor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .testimonials-slider-wrapper .testimonial-carousel .testimonial-block' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_control(
'padding',
[
'label' => __( 'Padding', 'hoteller-elementor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .testimonials-slider-wrapper .testimonial-carousel .testimonial-block .inner-box' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_control(
'card_bg_color',
[
'label' => __( 'Card Background Color', 'hoteller-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#ffffff',
'selectors' => [
'{{WRAPPER}} .testimonials-slider-wrapper .testimonial-carousel .testimonial-block .inner-box' => 'background: {{VALUE}}',
],
]
);
$this->add_control(
'border_radius',
[
'label' => __( 'Border Radius', 'hoteller-elementor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .testimonials-slider-wrapper .testimonial-carousel .testimonial-block .inner-box' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Box_Shadow::get_type(),
[
'name' => 'card_box_shadow',
'label' => __( 'Card Shadow', 'hoteller-elementor' ),
'selector' => '{{WRAPPER}} .testimonials-slider-wrapper .testimonial-carousel .testimonial-block .inner-box',
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_name_style',
array(
'label' => esc_html__( 'Client Name', 'hoteller-elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
)
);
$this->add_control(
'name_color',
[
'label' => __( 'Client Name Color', 'hoteller-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#000000',
'selectors' => [
'{{WRAPPER}} .testimonials-slider-wrapper .testimonial-carousel .testimonial-block .info-box .name' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'name_typography',
'label' => __( 'Name Typography', 'hoteller-elementor' ),
'selector' => '{{WRAPPER}} .testimonials-slider-wrapper .testimonial-carousel .testimonial-block .info-box .name',
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_position_style',
array(
'label' => esc_html__( 'Client Position', 'hoteller-elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
)
);
$this->add_control(
'position_color',
[
'label' => __( 'Client Position Color', 'hoteller-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#000000',
'selectors' => [
'{{WRAPPER}} .testimonials-slider-wrapper .testimonial-carousel .testimonial-block .info-box .designation' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'position_typography',
'label' => __( 'Position Typography', 'hoteller-elementor' ),
'selector' => '{{WRAPPER}} .testimonials-slider-wrapper .testimonial-carousel .testimonial-block .info-box .designation',
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_content_style',
array(
'label' => esc_html__( 'Description', 'hoteller-elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
)
);
$this->add_control(
'description_color',
[
'label' => __( 'Description Color', 'hoteller-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#000000',
'selectors' => [
'{{WRAPPER}} .testimonials-slider-wrapper .testimonial-carousel .testimonial-block .text' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'description_typography',
'label' => __( 'Description Typography', 'hoteller-elementor' ),
'selector' => '{{WRAPPER}} .testimonials-slider-wrapper .testimonial-carousel .testimonial-block .text',
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_navigation_style',
array(
'label' => esc_html__( 'Navigation', 'hoteller-elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
)
);
$this->add_control(
'navigation_background_color',
[
'label' => __( 'Navigation Background Color', 'hoteller-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#ffffff',
'selectors' => [
'{{WRAPPER}} .testimonial-carousel .owl-next, .testimonial-carousel .owl-prev' => 'background: {{VALUE}}',
],
]
);
$this->add_control(
'navigation_color',
[
'label' => __( 'Navigation Color', 'hoteller-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#000000',
'selectors' => [
'{{WRAPPER}} .testimonials-slider-wrapper .testimonial-carousel .owl-next .arrow-right' => 'color: {{VALUE}}',
'{{WRAPPER}} .testimonials-slider-wrapper .testimonial-carousel .owl-prev .arrow-left' => 'color: {{VALUE}}',
],
]
);
$this->add_control(
'navigation_hover_background_color',
[
'label' => __( 'Navigation Hover Background Color', 'hoteller-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#000000',
'selectors' => [
'{{WRAPPER}} .testimonial-carousel .owl-next:hover, .testimonial-carousel .owl-prev:hover' => 'background: {{VALUE}}',
],
]
);
$this->add_control(
'navigation_hover_color',
[
'label' => __( 'Navigation Hover Color', 'hoteller-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#ffffff',
'selectors' => [
'{{WRAPPER}} .testimonial-carousel .owl-next:hover .arrow-right:after, .testimonial-carousel .owl-prev:hover .arrow-left:after' => 'color: {{VALUE}}',
],
]
);
$this->add_responsive_control(
'navigation_position',
[
'label' => __( 'Navigation Position', 'hoteller-elementor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .testimonial-carousel div.owl-nav' => 'right: {{RIGHT}}{{UNIT}};',
'{{WRAPPER}} .testimonial-carousel .owl-nav' => 'bottom: {{BOTTOM}}{{UNIT}};',
],
]
);
$this->end_controls_section();
}
/**
* Render the widget output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @since 1.0.0
*
* @access protected
*/
protected function render() {
include(HOTELLER_ELEMENTOR_PATH.'templates/testimonial-slider/index.php');
}
/**
* Render the widget output in the editor.
*
* Written as a Backbone JavaScript template and used to generate the live preview.
*
* @since 1.0.0
*
* @access protected
*/
protected function content_template() {
return '';
}
}