????
| Current Path : /home/degesdxb/public_html/wp-content/plugins/hoteller-elementor/widgets/ |
| Current File : //home/degesdxb/public_html/wp-content/plugins/hoteller-elementor/widgets/service-grid.php |
<?php
namespace HotellerElementor\Widgets;
use Elementor\Widget_Base;
use Elementor\Controls_Manager;
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
/**
* Elementor Portfolio Classic
*
* Elementor widget for portfolio posts
*
* @since 1.0.0
*/
class Hoteller_Service_Grid extends Widget_Base {
/**
* Retrieve the widget name.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'hoteller-service-grid';
}
/**
* Retrieve the widget title.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return __( 'Service Grid', 'hoteller-elementor' );
}
/**
* Retrieve the widget icon.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'eicon-gallery-grid';
}
/**
* 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 [ 'imagesloaded', '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' => __( 'Featured Image', 'hoteller-elementor' ),
'type' => \Elementor\Controls_Manager::MEDIA,
'label_block' => true,
]
);
$repeater->add_control(
'slide_icon', [
'label' => __( 'Icon', 'hoteller-elementor' ),
'type' => \Elementor\Controls_Manager::MEDIA,
'label_block' => true,
]
);
$repeater->add_control(
'slide_title', [
'label' => __( 'Title', 'hoteller-elementor' ),
'type' => \Elementor\Controls_Manager::TEXT,
'label_block' => true,
]
);
$repeater->add_control(
'slide_description', [
'label' => __( 'Description', 'hoteller-elementor' ),
'type' => \Elementor\Controls_Manager::WYSIWYG,
'label_block' => true,
]
);
$repeater->add_control(
'slide_link', [
'label' => __( 'Link URL', 'hoteller-elementor' ),
'type' => \Elementor\Controls_Manager::URL,
'show_external' => true,
]
);
$this->add_control(
'slides',
[
'label' => __( 'Slides', 'hoteller-elementor' ),
'type' => \Elementor\Controls_Manager::REPEATER,
'fields' => $repeater->get_controls(),
'title_field' => '{{{ slide_title }}}',
]
);
/**
*
* End slides repeat list
*
**/
$this->add_control(
'columns',
[
'label' => __( 'Columns', 'hoteller-elementor' ),
'type' => Controls_Manager::SLIDER,
'default' => [
'size' => 4,
],
'range' => [
'px' => [
'min' => 2,
'max' => 4,
'step' => 1,
]
],
]
);
$this->add_control(
'spacing',
[
'label' => __( 'Column Spacing', 'hoteller-elementor' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'hoteller-elementor' ),
'label_off' => __( 'No', 'hoteller-elementor' ),
'return_value' => 'yes',
]
);
$this->add_responsive_control(
'height',
[
'label' => __( 'Grid Height (in px)', 'hoteller-elementor' ),
'type' => Controls_Manager::SLIDER,
'default' => [
'size' => 350,
],
'range' => [
'px' => [
'min' => 100,
'max' => 1000,
'step' => 5,
]
],
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .service-grid-wrapper' => 'height: {{SIZE}}{{UNIT}}',
],
]
);
$this->add_control(
'border_radius',
[
'label' => __( 'Border Radius', 'hoteller-elementor' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 25,
'step' => 1,
],
],
'default' => [
'unit' => 'px',
'size' => 5,
],
'selectors' => [
'{{WRAPPER}} .service-grid-wrapper' => 'border-radius: {{SIZE}}{{UNIT}};',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Background::get_type(),
[
'name' => 'hover_background',
'label' => esc_html__( 'Hover Background', 'hoteller-elementor' ),
'types' => [ 'classic', 'gradient' ],
'selector' => '{{WRAPPER}} .service-grid-wrapper:before',
]
);
$this->add_control(
'entrance_animation',
[
'label' => esc_html__( 'Entrance Animation', 'hoteller-elementor' ),
'type' => Controls_Manager::SELECT,
'default' => 'slide-up',
'options' => [
'slide-up' => __( 'Slide Up', 'hoteller-elementor' ),
'popout' => __( 'Popout', 'hoteller-elementor' ),
'fade-in' => __( 'Fade In', 'hoteller-elementor' ),
]
]
);
$this->add_control(
'disable_animation',
[
'label' => esc_html__( 'Disable entrance animation for', 'hoteller-elementor' ),
'type' => Controls_Manager::SELECT,
'default' => 'tablet',
'options' => [
'none' => __( 'None', 'hoteller-elementor' ),
'tablet' => __( 'Mobile and Tablet', 'hoteller-elementor' ),
'mobile' => __( 'Mobile', 'hoteller-elementor' ),
'all' => __( 'Disable All', 'hoteller-elementor' ),
]
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_icon_style',
array(
'label' => esc_html__( 'Icon', 'hoteller-elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
)
);
$this->add_responsive_control(
'icon_size',
[
'label' => __( 'Icon Size (in px)', 'hoteller-elementor' ),
'type' => Controls_Manager::SLIDER,
'default' => [
'size' => 30,
],
'range' => [
'px' => [
'min' => 10,
'max' => 150,
'step' => 5,
]
],
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .service-grid-wrapper img' => 'max-width: {{SIZE}}{{UNIT}} !important',
],
]
);
$this->add_control(
'icon_color',
[
'label' => __( 'Icon Color', 'hoteller-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#ffffff',
'selectors' => [
'{{WRAPPER}} .service-grid-wrapper i' => 'color: {{VALUE}}',
],
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_title_style',
array(
'label' => esc_html__( 'Title', 'hoteller-elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
)
);
$this->add_control(
'title_color',
[
'label' => __( 'Title Color', 'hoteller-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#ffffff',
'selectors' => [
'{{WRAPPER}} .service-grid-wrapper .overflow-inner .header-wrap h2' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'title_typography',
'label' => __( 'Title Typography', 'hoteller-elementor' ),
'selector' => '{{WRAPPER}} .service-grid-wrapper .overflow-inner .header-wrap h2',
]
);
$this->add_control(
'title_alignment',
[
'label' => __( 'Alignment', 'hoteller-elementor' ),
'type' => \Elementor\Controls_Manager::CHOOSE,
'options' => [
'left' => [
'title' => __( 'Left', 'hoteller-elementor' ),
'icon' => 'eicon-text-align-left',
],
'center' => [
'title' => __( 'Center', 'hoteller-elementor' ),
'icon' => 'eicon-text-align-center',
],
'right' => [
'title' => __( 'Right', 'hoteller-elementor' ),
'icon' => 'eicon-text-align-right',
],
],
'default' => 'left',
'toggle' => true,
'selectors' => [
'{{WRAPPER}} .service-grid-wrapper .overflow-inner' => 'text-align: {{VALUE}}',
],
]
);
$this->add_responsive_control(
'title_padding',
[
'label' => __( 'Padding', 'hoteller-elementor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%', 'em' ],
'selectors' => [
'{{WRAPPER}} .service-grid-wrapper .inner-wrap .inner-wrap-border' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_description_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' => '#ffffff',
'selectors' => [
'{{WRAPPER}} .service-grid-wrapper .overflow-inner .hover-content' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'description_typography',
'label' => __( 'Description Typography', 'hoteller-elementor' ),
'selector' => '{{WRAPPER}} .service-grid-wrapper .overflow-inner .hover-content',
]
);
$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/service-grid/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 '';
}
}