HEX
Server: LiteSpeed
System: Linux boring-lehmann.135-181-181-249.plesk.page 4.18.0-553.85.1.el8_10.x86_64 #1 SMP Mon Nov 24 09:05:24 EST 2025 x86_64
User: sethsawariyabizmart._h2dp1nbhkqm (10008)
PHP: 8.3.31
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/sethsawariyabizmart.com/httpdocs/wp-content/themes/home-theatre/inc/customizer.php
<?php
/**
 * Customizer
 * 
 * @package WordPress
 * @subpackage home-theatre
 * @since home-theatre 1.0
 */

/**
 * Add postMessage support for site title and description for the Theme Customizer.
 *
 * @param WP_Customize_Manager $wp_customize Theme Customizer object.
 */
function home_theatre_customize_register( $wp_customize ) {
    // Check for existence of WP_Customize_Manager before proceeding
	if ( ! class_exists( 'WP_Customize_Manager' ) ) {
        return;
    }
    
    // Add the "Go to Premium" upsell section
	$wp_customize->add_section( new Home_Theatre_Upsell_Section( $wp_customize, 'upsell_premium_section', array(
		'title'       => __( 'Home Theatre', 'home-theatre' ),
		'button_text' => __( 'GO TO PREMIUM', 'home-theatre' ),
		'url'         => esc_url( HOME_THEATRE_BUY_NOW ),
		'priority'    => 0,
	)));

	// Add the "Bundle" upsell section
	$wp_customize->add_section( new Home_Theatre_Upsell_Section( $wp_customize, 'upsell_bundle_section', array(
		'title'       => __( 'All themes in Single Package', 'home-theatre' ),
		'button_text' => __( 'GET BUNDLE', 'home-theatre' ),
		'url'         => esc_url( HOME_THEATRE_BUNDLE ),
		'priority'    => 1,
	)));
}
add_action( 'customize_register', 'home_theatre_customize_register' );

if ( class_exists( 'WP_Customize_Section' ) ) {
	class Home_Theatre_Upsell_Section extends WP_Customize_Section {
		public $type = 'home-theatre-upsell';
		public $button_text = '';
		public $url = '';

		protected function render() {
			?>
			<li id="accordion-section-<?php echo esc_attr( $this->id ); ?>" class="home_theatre_upsell_section accordion-section control-section control-section-<?php echo esc_attr( $this->id ); ?> cannot-expand">
				<h3 class="accordion-section-title premium-details">
					<?php echo esc_html( $this->title ); ?>
					<a href="<?php echo esc_url( $this->url ); ?>" class="button button-secondary alignright" target="_blank" style="margin-top: -4px;"><?php echo esc_html( $this->button_text ); ?></a>
				</h3>
			</li>
			<?php
		}
	}
}

/**
 * Enqueue script for custom customize control.
 */
function home_theatre_custom_control_scripts() {
	wp_enqueue_script( 'home-theatre-custom-controls-js', get_template_directory_uri() . '/assets/js/custom-controls.js', array( 'jquery', 'jquery-ui-core', 'jquery-ui-sortable' ), '1.0', true );

    wp_enqueue_style( 'home-theatre-customizer-css', get_template_directory_uri() . '/assets/css/customizer.css', array(), '1.0' );
}
add_action( 'customize_controls_enqueue_scripts', 'home_theatre_custom_control_scripts' );