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/themes/hello-biz/modules/theme/components/customizer.php
<?php
namespace HelloBiz\Modules\Theme\Components;

use HelloBiz\Includes\Utils;
use HelloBiz\Modules\Theme\Classes\Customizer_Action_Links;

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

class Customizer {
	const CUSTOMIZER_SECTION_NAME = 'hello-biz-options';

	public function register( $wp_customize ): void {
		if ( ! apply_filters( 'hello-plus-theme/customizer/enable', true ) ) {
			return;
		}

		$wp_customize->add_section(
			self::CUSTOMIZER_SECTION_NAME,
			[
				'title' => esc_html__( 'Header & Footer', 'hello-biz' ),
				'capability' => 'edit_theme_options',
			]
		);

		$wp_customize->add_setting(
			'ehp-header-footer',
			[
				'sanitize_callback' => false,
				'transport' => 'refresh',
			]
		);

		$wp_customize->add_control(
			new Customizer_Action_Links(
				$wp_customize,
				'ehp-header-footer',
				[
					'section' => self::CUSTOMIZER_SECTION_NAME,
					'priority' => 20,
				]
			)
		);
	}

	public function enqueue_customizer_script() {
		$handle     = 'hello-biz-customizer';
		$asset_path = HELLO_BIZ_SCRIPTS_PATH . $handle . '.asset.php';
		$asset_url  = HELLO_BIZ_SCRIPTS_URL;

		if ( ! file_exists( $asset_path ) ) {
			return;
		}

		$asset = require $asset_path;

		wp_enqueue_script(
			$handle,
			$asset_url . $handle . '.js',
			array_merge( $asset['dependencies'], [ 'wp-util' ] ),
			$asset['version'],
			true
		);

		wp_set_script_translations( $handle, 'hello-biz' );

		wp_localize_script(
			$handle,
			'ehp_customizer',
			[
				'nonce' => wp_create_nonce( 'updates' ),
				'redirectTo' => Utils::is_hello_plus_active() ? self_admin_url( 'admin.php?page=hello-plus-setup-wizard' ) : '',
			]
		);

		wp_enqueue_style(
			'hello-biz-customizer',
			HELLO_BIZ_STYLE_URL . 'customizer.css',
			[],
			HELLO_BIZ_ELEMENTOR_VERSION
		);
	}

	public function __construct() {
		add_action( 'customize_controls_enqueue_scripts', [ $this, 'enqueue_customizer_script' ] );
		add_action( 'customize_register', [ $this, 'register' ] );
	}
}