55 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.7 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 {
 | |
| 		public $type = 'gp-upsell-section';
 | |
| 		public $pro_url = '';
 | |
| 		public $pro_text = '';
 | |
| 		public $id = '';
 | |
| 
 | |
| 		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;
 | |
| 		}
 | |
| 
 | |
| 		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' ), false, true );
 | |
| 	}
 | |
| }
 |