????
| Current Path : /home/degesdxb/public_html/wp-content/plugins/hoteller-elementor/widgets/ |
| Current File : /home/degesdxb/public_html/wp-content/plugins/hoteller-elementor/widgets/background-menu-effect.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
*
* @since 1.0.0
*/
class Hoteller_Background_Menu_Effect extends Widget_Base {
/**
* Retrieve the widget name.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'hoteller-background-menu-effect';
}
/**
* Retrieve the widget title.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return __( 'Background Menu Effect', 'hoteller-elementor' );
}
/**
* Retrieve the widget icon.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'eicon-bullet-list';
}
/**
* 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 [ '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_title', [
'label' => __( 'Title', 'hoteller-elementor' ),
'type' => \Elementor\Controls_Manager::TEXT,
'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(
'display_default',
[
'label' => __( 'Display Default Image', 'hoteller-elementor' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'no',
'label_on' => __( 'Yes', 'hoteller-elementor' ),
'label_off' => __( 'No', 'hoteller-elementor' ),
'return_value' => 'yes',
]
);
$this->add_control(
'mouseover_effect',
[
'label' => __( 'Mouseover Effect', 'hoteller-elementor' ),
'type' => Controls_Manager::SELECT,
'default' => 'fade',
'options' => [
'zoom' => __( 'Zoom', 'hoteller-elementor' ),
'fade' => __( 'Fade', 'hoteller-elementor' ),
],
]
);
$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' => '#000000',
'selectors' => [
'{{WRAPPER}} .themegoods-background-menu .themegoods-background-menu__item-link' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'title_typography',
'label' => __( 'Title Typography', 'hoteller-elementor' ),
'selector' => '{{WRAPPER}} .themegoods-background-menu .themegoods-background-menu__item-link',
]
);
$this->add_responsive_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}} .themegoods-background-menu' => 'text-align: {{VALUE}}',
],
]
);
$this->add_control(
'title_width',
[
'label' => __( 'Width', 'hoteller-elementor' ),
'type' => Controls_Manager::SELECT,
'default' => 'fullwidth',
'options' => [
'fullwidth' => __( 'Fullwidth', 'hoteller-elementor' ),
'inline' => __( 'Inline', 'hoteller-elementor' ),
],
]
);
$this->add_control(
'title_margin',
[
'label' => __( 'Margin', 'hoteller-elementor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .themegoods-background-menu .themegoods-background-menu__item' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_background_style',
array(
'label' => esc_html__( 'Background', 'hoteller-elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
)
);
$this->add_control(
'background_color',
[
'label' => __( 'Default Background', 'hoteller-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#000000',
'selectors' => [
'{{WRAPPER}} .themegoods-background-menu-default' => 'background: {{VALUE}}',
],
]
);
$this->add_control(
'background_overlay',
[
'label' => __( 'Background Overlay', 'hoteller-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => 'rgba(0,0,0,0.2)',
'selectors' => [
'{{WRAPPER}} .themegoods-background-menu__item-image:after' => 'background: {{VALUE}}',
],
]
);
$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/background-menu-effect/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 '';
}
}