| Server IP : 89.108.64.180 / Your IP : 216.73.217.92 Web Server : Apache/2.4.41 (Ubuntu) System : Linux 89-108-64-180.cloudvps.regruhosting.ru 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : www-root ( 1010) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/www-root/data/www/omapart.ru/wp-content/plugins/hoteller-elementor/widgets/ |
Upload File : |
<?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_Food_Menu extends Widget_Base {
/**
* Retrieve the widget name.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'hoteller-food-menu';
}
/**
* Retrieve the widget title.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return __( 'Food Menu', 'hoteller-elementor' );
}
/**
* Retrieve the widget icon.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'eicon-post-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_description', [
'label' => __( 'Description', 'hoteller-elementor' ),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'label_block' => true,
]
);
$repeater->add_control(
'slide_price', [
'label' => __( 'Price', 'hoteller-elementor' ),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __( '$9' , 'hoteller-elementor' ),
'label_block' => true,
]
);
$repeater->add_control(
'slide_sale_price', [
'label' => __( 'Sale Price', 'hoteller-elementor' ),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __( '$7' , 'hoteller-elementor' ),
'label_block' => true,
]
);
$repeater->add_control(
'slide_tag', [
'label' => __( 'Special Tag', 'hoteller-elementor' ),
'type' => \Elementor\Controls_Manager::TEXT,
'description' => __( 'Enter special tag for this menu ex. Barista Selection (optional)', 'hoteller-elementor' ),
'show_external' => true,
]
);
$this->add_control(
'slides',
[
'label' => __( 'Menus', 'hoteller-elementor' ),
'type' => \Elementor\Controls_Manager::REPEATER,
'fields' => $repeater->get_controls(),
'title_field' => '{{{ slide_title }}}',
]
);
/**
*
* End slides repeat list
*
**/
$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}} .food-menu-content-title-holder h3' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'title_typography',
'label' => __( 'Title Typography', 'hoteller-elementor' ),
'selector' => '{{WRAPPER}} .food-menu-content-title-holder h3',
]
);
$this->add_control(
'title_dotted_color',
[
'label' => __( 'Title Dotted Color', 'hoteller-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#000000',
'selectors' => [
'{{WRAPPER}} .food-menu-content-title-line' => 'border-color: {{VALUE}}',
],
]
);
$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' => '#000000',
'selectors' => [
'{{WRAPPER}} .food-menu-desc' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'description_typography',
'label' => __( 'Description Typography', 'hoteller-elementor' ),
'selector' => '{{WRAPPER}} .food-menu-desc',
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_price_style',
array(
'label' => esc_html__( 'Price', 'hoteller-elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
)
);
$this->add_control(
'price_color',
[
'label' => __( 'Price Color', 'hoteller-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#000000',
'selectors' => [
'{{WRAPPER}} .food-menu-content-price-holder .food-menu-content-price-normal' => 'color: {{VALUE}}',
],
]
);
$this->add_control(
'sale_price_color',
[
'label' => __( 'Sale Price Color', 'hoteller-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#989898',
'selectors' => [
'{{WRAPPER}} .food-menu-content-price-holder .food-menu-content-price-sale' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'price_typography',
'label' => __( 'Price Typography', 'hoteller-elementor' ),
'selector' => '{{WRAPPER}} .food-menu-content-price-holder',
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_special_tag_style',
array(
'label' => esc_html__( 'Special Tag', 'hoteller-elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
)
);
$this->add_control(
'special_tag_color',
[
'label' => __( 'Special Tag Color', 'hoteller-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#ffffff',
'selectors' => [
'{{WRAPPER}} .food-menu-content-highlight-holder h4' => 'color: {{VALUE}}',
],
]
);
$this->add_control(
'special_tag_bg_color',
[
'label' => __( 'Special Tag Background Color', 'hoteller-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#000000',
'selectors' => [
'{{WRAPPER}} .food-menu-content-highlight-holder' => 'background: {{VALUE}}',
],
]
);
$this->add_control(
'special_tag_border_color',
[
'label' => __( 'Special Tag Border Color', 'hoteller-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#000000',
'selectors' => [
'{{WRAPPER}} .food-menu-highlight' => 'border-color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'special_tag_typography',
'label' => __( 'Special Tag Typography', 'hoteller-elementor' ),
'selector' => '{{WRAPPER}} .food-menu-content-highlight-holder h4',
]
);
$this->end_controls_section();
/*$this->start_controls_section(
'section_nutrition_style',
array(
'label' => esc_html__( 'Nutrition', 'hoteller-elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
)
);
$this->add_control(
'special_nutrition_color',
[
'label' => __( 'Nutrition Color', 'hoteller-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#000000',
'selectors' => [
'{{WRAPPER}} .food-menu-tooltip-content' => 'color: {{VALUE}}',
'{{WRAPPER}} .food-menu-tooltip-content h5' => 'color: {{VALUE}}',
],
]
);
$this->add_control(
'special_nutrition_bg_color',
[
'label' => __( 'Nutrition Background Color', 'hoteller-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#FFFBF2',
'selectors' => [
'{{WRAPPER}} .tooltipster-sidetip.tooltipster-shadow .tooltipster-box' => '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/food-menu/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 '';
}
}