HEX
Server: Apache
System: Linux webm009.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User: ateliug (129934)
PHP: 5.4.45
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/ateliug/www/wp-content/themes/perfect-portfolio/inc/customizer/info.php
<?php
/**
 * Perfect Portfolio Theme Info
 *
 * @package Perfect_Portfolio
 */

if ( ! function_exists( 'perfect_portfolio_customizer_theme_info' ) ) :
	/**
     * Add theme info
     */
	function perfect_portfolio_customizer_theme_info( $wp_customize ) {
		
	    $wp_customize->add_section( 'theme_info_section', array(
			'title'       => __( 'Demo & Documentation' , 'perfect-portfolio' ),
			'priority'    => 6,
		) );
	    
	    /** Important Links */
		$wp_customize->add_setting( 'theme_info_setting',
	        array(
	            'default' => '',
	            'sanitize_callback' => 'wp_kses_post',
	        )
	    );
	    
	    $theme_info = '<p>';

	    /* translators: 1: string, 2: preview url, 3: string */
		$theme_info .= sprintf( '%1$s<a href="%2$s" target="_blank">%3$s</a>', esc_html__( 'Demo Link : ', 'perfect-portfolio' ), esc_url( 'https://rarathemes.com/previews/?theme='. PERFECT_PORTFOLIO_THEME_TEXTDOMAIN . '/?utm_source=perfect_portfolio&utm_medium=customizer&utm_campaign=theme_demo' ), esc_html__( 'Click here.', 'perfect-portfolio' ) );

	    $theme_info .= '</p><p>';

	    /* translators: 1: string, 2: documentation url, 3: string */
	    $theme_info .= sprintf( '%1$s<a href="%2$s" target="_blank">%3$s</a>', esc_html__( 'Documentation Link : ', 'perfect-portfolio' ), esc_url( 'https://docs.rarathemes.com/docs/perfect-portfolio/?utm_source=perfect_portfolio&utm_medium=customizer&utm_campaign=docs' ), esc_html__( 'Click here.', 'perfect-portfolio' ) );

	    $theme_info .= '</p>';

		$wp_customize->add_control( new Perfect_Portfolio_Note_Control( $wp_customize,
	        'theme_info_setting', 
	            array(
	                'section'     => 'theme_info_section',
	                'description' => $theme_info
	            )
	        )
	    );
	    
	}
endif;
add_action( 'customize_register', 'perfect_portfolio_customizer_theme_info' );

if( class_exists( 'WP_Customize_Section' ) ) :
/**
 * Adding Go to Pro Section in Customizer
 * https://github.com/justintadlock/trt-customizer-pro
 */
class Perfect_Portfolio_Customize_Section_Pro extends WP_Customize_Section {

	/**
	 * The type of customize section being rendered.
	 *
	 * @since  1.0.0
	 * @access public
	 * @var    string
	 */
	public $type = 'pro-section';

	/**
	 * Custom button text to output.
	 *
	 * @since  1.0.0
	 * @access public
	 * @var    string
	 */
	public $pro_text = '';

	/**
	 * Custom pro button URL.
	 *
	 * @since  1.0.0
	 * @access public
	 * @var    string
	 */
	public $pro_url = '';

	/**
	 * Add custom parameters to pass to the JS via JSON.
	 *
	 * @since  1.0.0
	 * @access public
	 * @return void
	 */
	public function json() {
		$json = parent::json();

		$json['pro_text'] = $this->pro_text;
		$json['pro_url']  = esc_url( $this->pro_url );

		return $json;
	}

	/**
	 * Outputs the Underscore.js template.
	 *
	 * @since  1.0.0
	 * @access public
	 * @return void
	 */
	protected function render_template() { ?>
		<li id="accordion-section-{{ data.id }}" class="accordion-section control-section control-section-{{ data.type }} cannot-expand">
			<h3 class="accordion-section-title">
				{{ data.title }}
				<# if ( data.pro_text && data.pro_url ) { #>
					<a href="{{{ data.pro_url }}}" class="button button-secondary alignright" target="_blank">{{ data.pro_text }}</a>
				<# } #>
			</h3>
		</li>
	<?php }
}
endif;

add_action( 'customize_register', 'perfect_portfolio_page_sections_pro' );

function perfect_portfolio_page_sections_pro( $manager ){
	// Register custom section types.
	$manager->register_section_type( 'Perfect_Portfolio_Customize_Section_Pro' );

	// Register sections.
	$manager->add_section(
		new Perfect_Portfolio_Customize_Section_Pro(
			$manager,
			'perfect_portfolio_view_pro',
			array(
				'title'    => esc_html__( 'Pro Available', 'perfect-portfolio' ),
                'priority' => 5, 
				'pro_text' => esc_html__( 'VIEW PRO THEME', 'perfect-portfolio' ),
				'pro_url'  => 'https://rarathemes.com/wordpress-themes/perfect-portfolio-pro/?utm_source=perfect_portfolio&utm_medium=customizer&utm_campaign=upgrade_to_pro'
			)
		)
	);
}