HEX
Server: Apache
System: Linux webm003.cluster123.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
User: vanessatli (59366)
PHP: 5.4.45
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/vanessatli/www/wp-content/themes/hestia/inc/customizer/class-hestia-customizer-notices.php
<?php
/**
 * The customizer notices manager.
 *
 * @package Hestia
 */

/**
 * Class Hestia_Customizer_Notices
 */
class Hestia_Customizer_Notices extends Hestia_Register_Customizer_Controls {

	/**
	 * Initialize.
	 */
	public function init() {
		parent::init();
		add_action( 'wp_ajax_dismissed_notice_handler', array( $this, 'ajax_notice_handler' ) );
		add_action( 'customize_controls_enqueue_scripts', array( $this, 'enqueue_notices_handler' ), 0 );
	}

	/**
	 * AJAX handler to store the state of dismissible notices.
	 */
	final public function ajax_notice_handler() {
		if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['nonce'] ) ), 'hestia-customizer_notices_nonce' ) ) {
			die( 'Invalid nonce.' );
		}

		if ( ! current_user_can( 'manage_options' ) ) {
			die( 'Unauthorized access.' );
		}

		$control_id = sanitize_text_field( wp_unslash( $_POST['control'] ) );
		if ( empty( $control_id ) ) {
			die();
		}
		update_option( 'dismissed-' . $control_id, true );
		die();
	}

	/**
	 * Enqueue the controls script.
	 */
	public function enqueue_notices_handler() {
		wp_register_script( 'hestia-customizer-notices-handler', trailingslashit( get_template_directory_uri() ) . 'assets/js/admin/customizer-notices-handler.js', array( 'customize-controls' ), HESTIA_VERSION );

		$admin_data = array(
			'ajaxurl' => admin_url( 'admin-ajax.php' ),
			'nonce'   => wp_create_nonce( 'hestia-customizer_notices_nonce' ),
		);

		if ( class_exists( 'WooCommerce' ) && ! class_exists( 'Hestia_Addon_Manager' ) ) {
			$woocommerce_upsell_markup = sprintf(
				// translators: %s is the feature name.
				__( 'More Options Available for %s in the PRO version.', 'hestia' ),
				'WooCommerce'
			);
			$woocommerce_upsell_markup .= sprintf(
				'<a class="button button-primary" target="_blank" href="' . tsdk_translate_link( tsdk_utmify( 'https://themeisle.com/themes/hestia/upgrade/', 'woocommerce' ) ) . '" style="width: fit-content; margin: 15px 0;">%s</a>',
				__( 'Upgrade to Unlock', 'hestia' )
			);

			$admin_data['upsell']['woocommerce_panel'] = $woocommerce_upsell_markup;
		}

		wp_localize_script(
			'hestia-customizer-notices-handler',
			'dismissNotices',
			$admin_data
		);

		wp_enqueue_script( 'hestia-customizer-notices-handler' );
	}

	/**
	 * Add customizer controls.
	 */
	public function add_controls() {
		$this->register_types();
		$this->add_docs_link_section();
		$this->maybe_add_woo_notice();
		$this->maybe_add_main_notice();
	}

	/**
	 * Register customizer controls type.
	 */
	private function register_types() {
		$this->register_type( 'Hestia_Section_Docs', 'section' );
		$this->register_type( 'Hestia_Generic_Notice_Section', 'section' );
		$this->register_type( 'Hestia_Main_Notice_Section', 'section' );
	}

	/**
	 * Add docs link section.
	 */
	private function add_docs_link_section() {
		$this->add_section(
			new Hestia_Customizer_Section(
				'hestia_docs_section',
				array(
					'theme_info_title' => esc_html__( 'Hestia', 'hestia' ),
					'label_url'        => 'https://docs.themeisle.com/article/753-hestia-doc?utm_medium=customizer&utm_source=button&utm_campaign=documentation',
					'label_text'       => esc_html__( 'Documentation', 'hestia' ),
					'priority'         => 455,
				),
				'Hestia_Section_Docs'
			)
		);
		$this->add_control(
			new Hestia_Customizer_Control(
				'hestia_control_to_enable_docs_section',
				array(
					'sanitize_callback' => 'sanitize_text_field',
				),
				array(
					'section' => 'hestia_docs_section',
					'type'    => 'hidden',
				)
			)
		);
	}

	/**
	 * Maybe add WooCommerce notice.
	 */
	private function maybe_add_woo_notice() {
		if ( class_exists( 'WooCommerce', false ) ) {
			return;
		}
		$this->add_section(
			new Hestia_Customizer_Section(
				'hestia_info_woocommerce',
				array(
					'section_text' =>
						sprintf(
							/* translators: %1$s is Plugin Name */
							esc_html__( 'To have access to a shop section please install and configure %1$s.', 'hestia' ),
							esc_html__( 'WooCommerce plugin', 'hestia' )
						),
					'slug'         => 'woocommerce',
					'panel'        => 'hestia_frontpage_sections',
					'priority'     => 451,
					'capability'   => 'install_plugins',
					'hide_notice'  => (bool) get_option( 'dismissed-hestia_info_woocommerce', false ),
					'options'      => array(
						'redirect' => admin_url( 'customize.php' ) . '?autofocus[section]=hestia_shop',
					),
				),
				'Hestia_Generic_Notice_Section'
			)
		);
		$this->add_control(
			new Hestia_Customizer_Control(
				'hestia_control_to_enable_woo_recommendation',
				array(
					'sanitize_callback' => 'sanitize_text_field',
				),
				array(
					'section' => 'hestia_info_woocommerce',
					'type'    => 'hidden',
				)
			)
		);
	}

	/**
	 * Check for required plugins and add main notice if needed.
	 */
	private function maybe_add_main_notice() {
		if ( ! class_exists( 'Orbit_Fox', false ) ) {

			$this->add_section(
				new Hestia_Customizer_Section(
					'hestia_info_obfx',
					array(
						'plugin_name' => 'Orbit Fox Companion',
						'slug'        => 'themeisle-companion',
						'priority'    => 0,
						'capability'  => 'install_plugins',
						'hide_notice' => (bool) get_option( 'dismissed-hestia_info_obfx', false ),
						'title'       => __( 'Recommended Plugins', 'hestia' ),
						'options'     => array(
							'redirect' => admin_url( 'customize.php' ),
							'fixed'    => true,
						),
						/* translators: Orbit Fox Companion */
						'description' => sprintf( esc_html__( 'If you want to take full advantage of the options this theme has to offer, please install and activate %s.', 'hestia' ), sprintf( '<strong>%s</strong>', 'Orbit Fox Companion' ) ),
					),
					'Hestia_Main_Notice_Section'
				)
			);

			$this->add_control(
				new Hestia_Customizer_Control(
					'hestia_control_to_enable_obfx_recommendation',
					array(
						'sanitize_callback' => 'sanitize_text_field',
					),
					array(
						'section' => 'hestia_info_obfx',
						'type'    => 'hidden',
					)
				)
			);
		}

		$obfx_was_dismissed = (bool) get_option( 'dismissed-hestia_info_obfx', false ) || defined( 'OBFX_URL' );

		if ( ! $obfx_was_dismissed ) {
			return;
		}

		$this->add_section(
			new Hestia_Customizer_Section(
				'hestia_info_otter_blocks',
				array(
					'plugin_name' => 'Otter Blocks',
					'slug'        => 'otter-blocks',
					'priority'    => 0,
					'capability'  => 'install_plugins',
					'hide_notice' => (bool) get_option( 'dismissed-hestia_info_otter_blocks', false ) || defined( 'OTTER_BLOCKS_VERSION' ),
					'title'       => __( 'Recommended Plugins', 'hestia' ),
					'options'     => array(
						'redirect' => admin_url( 'customize.php' ),
						'fixed'    => true,
					),
					/* translators: Orbit Fox Companion */
					'description' => esc_html__( 'Quickly create WordPress pages with 20+ blocks, 100+ ready-to-import designs, and advanced editor extensions.', 'hestia' ),
				),
				'Hestia_Main_Notice_Section'
			)
		);

		$this->add_control(
			new Hestia_Customizer_Control(
				'hestia_control_to_enable_otter_blocks_recommendation',
				array(
					'sanitize_callback' => 'sanitize_text_field',
				),
				array(
					'section' => 'hestia_info_otter_blocks',
					'type'    => 'hidden',
				)
			)
		);
	}

}