HEX
Server: Apache
System: Linux cp4.skywebbox.com 5.14.0-503.15.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Nov 28 07:25:19 EST 2024 x86_64
User: alfouzantranspor (1054)
PHP: 8.3.23
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/alfouzantranspor/www/wp-content/themes/soul-anchor/inc/customizer.php
<?php
/**
 * Customizer
 * 
 * @package WordPress
 * @subpackage Soul Anchor
 * @since Soul Anchor 1.0
 */

/**
 * Add postMessage support for site title and description for the Theme Customizer.
 *
 * @param WP_Customize_Manager $wp_customize Theme Customizer object.
 */
function soul_anchor_customize_register( $wp_customize ) {
    // Check for existence of WP_Customize_Manager before proceeding
	if ( ! class_exists( 'WP_Customize_Manager' ) ) {
        return;
    }
    
	$wp_customize->add_section( new Soul_Anchor_Customizer_Pro_Button( $wp_customize, 'upsell_premium_section', array(
		'title'       => __( 'Soul Anchor Pro', 'soul-anchor' ),
		'button_text' => __( 'Buy Pro Theme', 'soul-anchor' ),
		'url'         => esc_url( SOUL_ANCHOR_BUY_NOW ),
		'priority'    => 0,
	)));

	$wp_customize->add_section( new Soul_Anchor_Customizer_Pro_Button( $wp_customize, 'upsell_bundle_section', array(
		'title'       => __( 'Get All Themes', 'soul-anchor' ),
		'button_text' => __( 'Buy Now', 'soul-anchor' ),
		'url'         => esc_url( SOUL_ANCHOR_BUNDLE_LINK ),
		'priority'    => 0,
	)));

}
add_action( 'customize_register', 'soul_anchor_customize_register' );

if ( class_exists( 'WP_Customize_Section' ) ) {
	class Soul_Anchor_Customizer_Pro_Button extends WP_Customize_Section {
		public $type = 'soul-anchor-buynow';
		public $button_text = '';
		public $url = '';

		protected function render() {
			?>
			<li id="accordion-section-<?php echo esc_attr( $this->id ); ?>" class="soul_anchor_customizer_pro_button 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 soul_anchor_custom_control_scripts() {
	wp_enqueue_script( 'soul-anchor-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( 'soul-anchor-customizer-css', get_template_directory_uri() . '/assets/css/customizer.css', array(), '1.0' );
}
add_action( 'customize_controls_enqueue_scripts', 'soul_anchor_custom_control_scripts' );