96 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			96 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * The upsell Customizer section.
 | 
						|
 *
 | 
						|
 * @package GeneratePress
 | 
						|
 */
 | 
						|
 | 
						|
if ( ! defined( 'ABSPATH' ) ) {
 | 
						|
	exit; // Exit if accessed directly.
 | 
						|
}
 | 
						|
 | 
						|
if ( class_exists( 'WP_Customize_Section' ) && ! class_exists( 'GeneratePress_Upsell_Section' ) ) {
 | 
						|
	/**
 | 
						|
	 * Create our upsell section.
 | 
						|
	 * Escape your URL in the Customizer using esc_url().
 | 
						|
	 *
 | 
						|
	 * @since unknown
 | 
						|
	 */
 | 
						|
	class GeneratePress_Upsell_Section extends WP_Customize_Section {
 | 
						|
		/**
 | 
						|
		 * Set type.
 | 
						|
		 *
 | 
						|
		 * @var public $type
 | 
						|
		 */
 | 
						|
		public $type = 'gp-upsell-section';
 | 
						|
 | 
						|
		/**
 | 
						|
		 * Set pro URL.
 | 
						|
		 *
 | 
						|
		 * @var public $pro_url
 | 
						|
		 */
 | 
						|
		public $pro_url = '';
 | 
						|
 | 
						|
		/**
 | 
						|
		 * Set pro text.
 | 
						|
		 *
 | 
						|
		 * @var public $pro_text
 | 
						|
		 */
 | 
						|
		public $pro_text = '';
 | 
						|
 | 
						|
		/**
 | 
						|
		 * Set ID.
 | 
						|
		 *
 | 
						|
		 * @var public $id
 | 
						|
		 */
 | 
						|
		public $id = '';
 | 
						|
 | 
						|
		/**
 | 
						|
		 * Send variables to json.
 | 
						|
		 */
 | 
						|
		public function json() {
 | 
						|
			$json = parent::json();
 | 
						|
			$json['pro_text'] = $this->pro_text;
 | 
						|
			$json['pro_url']  = esc_url( $this->pro_url );
 | 
						|
			$json['id'] = $this->id;
 | 
						|
			return $json;
 | 
						|
		}
 | 
						|
 | 
						|
		/**
 | 
						|
		 * Render content.
 | 
						|
		 */
 | 
						|
		protected function render_template() {
 | 
						|
			?>
 | 
						|
			<li id="accordion-section-{{ data.id }}" class="generate-upsell-accordion-section control-section-{{ data.type }} cannot-expand accordion-section">
 | 
						|
				<h3><a href="{{{ data.pro_url }}}" target="_blank">{{ data.pro_text }}</a></h3>
 | 
						|
			</li>
 | 
						|
			<?php
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
if ( ! function_exists( 'generate_customizer_controls_css' ) ) {
 | 
						|
	add_action( 'customize_controls_enqueue_scripts', 'generate_customizer_controls_css' );
 | 
						|
	/**
 | 
						|
	 * Add CSS for our controls
 | 
						|
	 *
 | 
						|
	 * @since 1.3.41
 | 
						|
	 */
 | 
						|
	function generate_customizer_controls_css() {
 | 
						|
		wp_enqueue_style(
 | 
						|
			'generate-customizer-controls-css',
 | 
						|
			trailingslashit( get_template_directory_uri() ) . 'inc/customizer/controls/css/upsell-customizer.css',
 | 
						|
			array(),
 | 
						|
			GENERATE_VERSION
 | 
						|
		);
 | 
						|
 | 
						|
		wp_enqueue_script(
 | 
						|
			'generatepress-upsell',
 | 
						|
			trailingslashit( get_template_directory_uri() ) . 'inc/customizer/controls/js/upsell-control.js',
 | 
						|
			array( 'customize-controls' ),
 | 
						|
			GENERATE_VERSION,
 | 
						|
			true
 | 
						|
		);
 | 
						|
	}
 | 
						|
}
 |