File: /home/predezso/alwaysgaia.com/wp-content/themes/vilva/inc/customizer/info.php
<?php
/**
* Vilva Theme Info
*
* @package Vilva
*/
if( ! function_exists( 'vilva_customizer_theme_info' ) ) :
/**
* Theme Info
*/
function vilva_customizer_theme_info( $wp_customize ) {
$wp_customize->add_section( 'theme_info', array(
'title' => __( 'Demo & Documentation' , 'vilva' ),
'priority' => 6,
) );
/** Important Links */
$wp_customize->add_setting( 'theme_info_theme',
array(
'default' => '',
'sanitize_callback' => 'wp_kses_post',
)
);
$theme_info = '<p>';
$theme_info .= sprintf( __( 'Demo Link: %1$sClick here.%2$s', 'vilva' ), '<a href="' . esc_url( 'https://blossomthemes.com/theme-demo/?theme=vilva&utm_source=vilva&utm_medium=customizer&utm_campaign=theme_demo' ) . '" target="_blank">', '</a>' );
$theme_info .= '</p><p>';
$theme_info .= sprintf( __( 'Documentation Link: %1$sClick here.%2$s', 'vilva' ), '<a href="' . esc_url( 'https://docs.blossomthemes.com/' . VILVA_THEME_TEXTDOMAIN . '/?utm_source=vilva&utm_medium=customizer&utm_campaign=docs' ) . '" target="_blank">', '</a>' );
$theme_info .= '</p>';
$wp_customize->add_control( new Vilva_Note_Control( $wp_customize,
'theme_info_theme',
array(
'section' => 'theme_info',
'description' => $theme_info
)
)
);
}
endif;
add_action( 'customize_register', 'vilva_customizer_theme_info' );
if( class_exists( 'WP_Customize_Section' ) ) :
/**
* Adding Go to Pro Section in Customizer
* https://github.com/justintadlock/trt-customizer-pro
*/
class Vilva_Customize_Section_Pro extends WP_Customize_Section {
/**
* The type of customize section being rendered.
*
* @since 1.0.0
* @access public
* @var string
*/
public $type = 'vilva-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 Pro Button
*/
function vilva_page_sections_pro( $manager ) {
// Register custom section types.
$manager->register_section_type( 'Vilva_Customize_Section_Pro' );
// Register sections.
$manager->add_section(
new Vilva_Customize_Section_Pro(
$manager,
'vilva_page_view_pro',
array(
'title' => esc_html__( 'Pro Available', 'vilva' ),
'priority' => 5,
'pro_text' => esc_html__( 'VIEW PRO THEME', 'vilva' ),
'pro_url' => esc_url( 'https://blossomthemes.com/wordpress-themes/vilva-pro/?utm_source=vilva&utm_medium=customizer&utm_campaign=upgrade_to_pro' ),
)
)
);
}
add_action( 'customize_register', 'vilva_page_sections_pro' );