403Webshell
Server IP : 62.60.133.156  /  Your IP : 216.73.217.51
Web Server : LiteSpeed
System : Linux linux24.centraldnserver.com 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64
User : mimradmin ( 1166)
PHP Version : 7.4.33
Disable Function : show_source, system, shell_exec, passthru, exec, popen, proc_open
MySQL : OFF |  cURL : ON |  WGET : ON |  Perl : ON |  Python : ON |  Sudo : OFF |  Pkexec : OFF
Directory :  /home/mimradmin/public_html/wp-content/themes/woodmart/inc/modules/header-builder/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /home/mimradmin/public_html/wp-content/themes/woodmart/inc/modules/header-builder/class-manager.php
<?php
/**
 * Header builder manager class file.
 *
 * @package woodmart
 */

namespace XTS\Modules\Header_Builder;

use WPBMap;

/**
 * Handle backend AJAX actions. Creat, load, remove headers from the backend interface with AJAX.
 */
class Manager {
	/**
	 * Header factory.
	 *
	 * @var Header_Factory
	 */
	private $factory;

	/**
	 * Headers list.
	 *
	 * @var Headers_List
	 */
	private $list;

	/**
	 * Constructor.
	 *
	 * @param Header_Factory $factory Header factory.
	 * @param Headers_List   $headers_list Headers list.
	 */
	public function __construct( $factory, $headers_list ) {
		$this->factory = $factory;
		$this->list    = $headers_list;

		add_action( 'wp_ajax_woodmart_save_header', array( $this, 'save_header' ) );
		add_action( 'wp_ajax_woodmart_duplicate_header', array( $this, 'duplicate_header' ) );
		add_action( 'wp_ajax_woodmart_load_header', array( $this, 'load_header' ) );
		add_action( 'wp_ajax_woodmart_remove_header', array( $this, 'remove_header' ) );
		add_action( 'wp_ajax_woodmart_set_default_header', array( $this, 'set_default_header' ) );
		add_action( 'wp_ajax_woodmart_get_header_html', array( $this, 'get_header_html' ) );
		add_action( 'wp_ajax_woodmart_get_pages_url', array( $this, 'get_pages_url_action' ) );
	}

	/**
	 * Duplicate header action.
	 *
	 * @return void
	 */
	public function duplicate_header() {
		check_ajax_referer( 'woodmart-builder-save-header-nonce', 'security' );

		$id        = isset( $_GET['id'] ) ? sanitize_text_field( wp_unslash( $_GET['id'] ) ) : '';
		$header    = $this->factory->get_header( $id );
		$structure = $header->get_structure();
		$settings  = $header->get_settings();
		$name      = $header->get_name();

		$new_id   = $this->generate_id();
		$new_name = $name . ' ' . esc_html__( '(Copy)', 'woodmart' );

		$header = $this->factory->create_new( $new_id, $new_name, $structure, $settings );

		$this->list->add_header( $new_id, $new_name );

		$this->send_header_data( $header );
	}

	/**
	 * Save header settings.
	 *
	 * @return void
	 */
	public function save_header() {
		check_ajax_referer( 'woodmart-builder-save-header-nonce', 'security' );

		$structure = stripslashes( $_POST['structure'] ); // phpcs:ignore WordPress.Security
		$settings  = stripslashes( $_POST['settings'] ); // phpcs:ignore WordPress.Security

		// If we import a new header we don't have an ID.
		$id   = ( isset( $_POST['id'] ) ) ? sanitize_text_field( stripslashes( $_POST['id'] ) ) : $this->generate_id(); // phpcs:ignore WordPress.Security
		$name = sanitize_text_field( stripslashes( $_POST['name'] ) ); // phpcs:ignore WordPress.Security

		$header = $this->factory->update_header( $id, $name, json_decode( $structure, true ), json_decode( $settings, true ) );

		$this->list->add_header( $id, $name );

		$this->send_header_data( $header );
	}

	/**
	 * Load header.
	 *
	 * @return void
	 */
	public function load_header() {
		check_ajax_referer( 'woodmart-builder-load-header-nonce', 'security' );

		$id   = ( isset( $_GET['id'] ) ) ? sanitize_text_field( $_GET['id'] ) : ''; // phpcs:ignore WordPress.Security
		$base = ( isset( $_GET['base'] ) ) ? sanitize_text_field( $_GET['base'] ) : false; // phpcs:ignore WordPress.Security

		if ( ( isset( $_GET['initial'] ) && $_GET['initial'] ) || $base ) { // phpcs:ignore WordPress.Security
			$header = $this->new_header( $base );
		} else {
			$header = $this->factory->get_header( $id );
		}

		$this->send_header_data( $header );
	}

	/**
	 * Send header data.
	 *
	 * @param object $header Header data.
	 *
	 * @return void
	 */
	private function send_header_data( $header ) {
		$data = $header->get_data();

		$data['list'] = $this->list->get_all();

		echo wp_json_encode( $data );

		wp_die();
	}

	/**
	 * Create new header.
	 *
	 * @param string $base Template name.
	 *
	 * @return mixed
	 */
	private function new_header( $base = false ) {
		$list = $this->list->get_all();
		$id   = $this->generate_id();
		$name = esc_html__( 'Header layout', 'woodmart' ) . ' (' . ( count( $list ) + 1 ) . ')';

		if ( $base ) {
			$examples = $this->list->get_examples();

			if ( isset( $examples[ $base ] ) ) {
				$data      = json_decode( $this->get_example_json( $base ), true );
				$structure = $data['structure'];
				$settings  = $data['settings'];
				$name      = $data['name'];
			} elseif ( isset( $list[ $base ] ) ) {
				$data      = $this->factory->get_header( $base );
				$structure = $data->get_structure();
				$settings  = $data->get_settings();
			}

			$header = $this->factory->create_new( $id, $name, $structure, $settings );
		} else {
			$header = $this->factory->create_new( $id, $name );
		}

		$this->list->add_header( $id, $name );

		return $header;
	}

	/**
	 * Get settings header JSON.
	 *
	 * @param string $file File name.
	 *
	 * @return false|string
	 */
	private function get_example_json( $file ) {
		ob_start();

		include WOODMART_THEMEROOT . '/inc/modules/header-builder/examples/' . $file . '.json';

		return ob_get_clean();
	}

	/**
	 * Get random header ID.
	 *
	 * @return string
	 */
	private function generate_id() {
		return 'header_' . wp_rand( 100000, 999999 );
	}

	/**
	 * Remove header.
	 *
	 * @return void
	 */
	public function remove_header() {
		check_ajax_referer( 'woodmart-builder-remove-header-nonce', 'security' );

		$id = sanitize_text_field( stripslashes( $_GET['id'] ) ); // phpcs:ignore WordPress.Security

		delete_option( 'whb_' . $id );
		delete_option( 'xts-' . $id . '-file-data' );
		delete_option( 'xts-' . $id . '-css-data' );
		delete_option( 'xts-' . $id . '-version' );
		delete_option( 'xts-' . $id . '-site-url' );
		delete_option( 'xts-' . $id . '-status' );

		echo wp_json_encode(
			array(
				'list' => $this->list->remove( $id ),
			)
		);

		wp_die();
	}

	/**
	 * Set default header.
	 *
	 * @return void
	 */
	public function set_default_header() {
		check_ajax_referer( 'woodmart-builder-set-default-header-nonce', 'security' );

		$id = sanitize_text_field( stripslashes( $_GET['id'] ) ); // phpcs:ignore WordPress.Security

		update_option( 'whb_main_header', $id );

		$options = get_option( 'xts-woodmart-options' );

		$options['default_header'] = $id;

		update_option( 'xts-woodmart-options', $options );

		echo wp_json_encode(
			array(
				'default_header' => $id,
			)
		);

		wp_die();
	}

	/**
	 * Get default header ID.
	 *
	 * @return int
	 */
	public function get_default_header() {
		$id = get_option( 'whb_main_header' );

		if ( ! $id ) {
			$id = WOODMART_HB_DEFAULT_ID;
		}

		return $id;
	}

	/**
	 * Get header HTML.
	 *
	 * @return void
	 */
	public function get_header_html() {
		check_ajax_referer( 'woodmart-builder-header-html-nonce', 'security' );

		$structure = stripslashes( $_POST['structure'] ); // phpcs:ignore WordPress.Security
		$settings  = stripslashes( $_POST['settings'] ); // phpcs:ignore WordPress.Security

		$id = ( isset( $_POST['id'] ) ) ? sanitize_text_field( stripslashes( $_POST['id'] ) ) : $this->generate_id(); // phpcs:ignore WordPress.Security

		$name   = sanitize_text_field( stripslashes( $_POST['name'] ) ); // phpcs:ignore WordPress.Security
		$header = $this->factory->draft_header( $id, $name, json_decode( $structure, true ), json_decode( $settings, true ) );
		$data   = $header->get_data();

		$header_settings = $header->get_settings();

		$frontend_instance               = Frontend::get_instance();
		$frontend_instance->header       = $header;
		$GLOBALS['woodmart_hb_frontend'] = $frontend_instance;

		$data['list'] = $this->list->get_all();

		ob_start();

		if ( 'wpb' === woodmart_get_current_page_builder() && class_exists( 'WPBMap' ) ) {
			WPBMap::addAllMappedShortcodes();
		}

		$hb_frontend = Frontend::get_instance();

		$styles = new Styles();
		echo '<header ' . woodmart_get_header_classes( false, $header->get_options(), $id ) . '>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped

		echo '<style>' . $styles->get_all_css( $header->get_structure(), $header->get_options() ) . '</style>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped

		if ( ! empty( $header_settings['overlap'] ) && ! empty( $header_settings['boxed'] ) ) {
			woodmart_enqueue_inline_style( 'header-boxed' );
		}

		$hb_frontend->render_element( $header->get_structure() );

		do_action( 'whb_after_header' );

		echo '</header>';

		$data['header_html'] = ob_get_clean();

		echo wp_json_encode( $data );
		wp_die();
	}

	/**
	 * Get pages URL.
	 *
	 * @return void
	 */
	public function get_pages_url_action() {
		check_ajax_referer( 'woodmart-builder-header-search-page-nonce', 'security' );

		$name = isset( $_GET['name'] ) ? sanitize_text_field( $_GET['name'] ) : ''; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.MissingUnslash

		$args = array(
			's'              => $name,
			'post_type'      => array( 'page', 'post', 'portfolio', 'product' ),
			'posts_per_page' => apply_filters( 'woodmart_get_numberposts_by_query_autocomplete', 20 ),
		);

		$items = array();
		$posts = get_posts( $args );

		if ( count( $posts ) > 0 ) {
			foreach ( $posts as $post ) {
				$items[] = array(
					'value' => $post->ID,
					'url'   => get_permalink( $post->ID ),
					'label' => $post->post_title . ' (ID:' . $post->ID . ')',
				);
			}
		}

		wp_send_json(
			array(
				'results' => $items,
			)
		);
	}
}

Youez - 2016 - github.com/yon3zu