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/roflma.it/wp-content/plugins/lesya-plugin/elementor/functions.php
<?php
/**
 *  Lesya Elementor Layout Builder
 *
 * @package Lesya
 * @since 1.0
 */

// We check if the Elementor plugin has been installed / activated.

if( !in_array( 'elementor/elementor.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) return;

class Lesya_Elementor_Widget {

	private static $instance = null;

	/**
	 * @since 1.0
	 */
	public static function get_instance() {
	    if ( ! self::$instance )
	       self::$instance = new self;
	    return self::$instance;
	}

	/**
	 * @since 1.0
	 */
	public function init(){
		add_action( 'elementor/widgets/widgets_registered', array( $this, 'lesya_elementor_register_widgets' ) );

		add_action('elementor/frontend/after_register_styles', array($this, 'lesya_elementor_frontend_styles'), 10);

		add_action('elementor/frontend/after_register_scripts', array($this, 'lesya_elementor_frontend_scripts'), 10);

		add_action( 'elementor/elements/categories_registered', array( $this, 'lesya_elementor_widgets_category' ) );
	}

	/**
	 * @since 1.0
	 */
	public function lesya_elementor_register_widgets() {
		//Require all PHP files in the /elementor/widgets directory
		foreach( glob( plugin_dir_path( __FILE__ ) . "widgets/*.php" ) as $file ) {
		    require $file;
		}
	}

	/**
	 * @since 1.0
	 */
	public function lesya_elementor_frontend_scripts() {
		wp_enqueue_script( 'lesya-plugin-frontend-widgets-scripts',  plugin_dir_url( __FILE__ ) . 'assets/js/front-end-widgets.js', array('jquery'), false, true);
	}

	/**
	 * @since 1.0
	 */
	public function lesya_elementor_frontend_styles() {
		wp_enqueue_style( 'lesya-plugin-frontend-widget-style', plugin_dir_url( __FILE__ ) . 'assets/css/style.css', null, 1.0 );
	}

	/**
	 * @since 1.0
	 */
	public function lesya_elementor_widgets_category( $elements_manager ) {
		$elements_manager->add_category(
			'lesya-category',
			[
				'title' => esc_html__( 'Lesya Theme', 'lesya-plugin' ),
				'icon' => 'fa fa-plug',
			]
		);
	}
}

Lesya_Elementor_Widget::get_instance()->init();

function lesya_get_topmenu_horizontal( $menu_name = '' ) {

	$output = '';

	if ( has_nav_menu( 'primary' ) ) :
		$output = wp_nav_menu( array(
			'theme_location' => 'primary',
			'menu'		=> $menu_name,
			'container' => 'nav',
      'container_class' => 'navbar-collapse collapse clearfix',
			'menu_class' => 'navigation clearfix',
			'walker' => new Lesya_TopmenuHorizontal_Walker(),
		) );
	endif;

	return $output;
}

function lesya_get_footermenu_horizontal( $menu_name = '' ) {

	$output = '';

	if ( has_nav_menu( 'secondary' ) ) :
		$output = wp_nav_menu( array(
			'theme_location' => 'secondary',
			'menu'		=> $menu_name,
			'container' => 'nav',
      'container_class' => 'nav-container',
			'menu_class' => 'navigation-menu',
			'walker' => new Lesya_TopmenuHorizontal_Walker(),
		) );
	endif;

	return $output;
}