/home/lafermj/www/wp-content/themes/custom-file-2-1767498563/inc/customizer.php
<?php
/**
* Customizer
*
* @package WordPress
* @subpackage broker-agency
* @since broker-agency 1.0
*/
/**
* Add postMessage support for site title and description for the Theme Customizer.
*
* @param WP_Customize_Manager $wp_customize Theme Customizer object.
*/
function broker_agency_customize_register( $wp_customize ) {
// Check for existence of WP_Customize_Manager before proceeding
if ( ! class_exists( 'WP_Customize_Manager' ) ) {
return;
}
// Add the "Go to Premium" upsell section
$wp_customize->add_section( new Broker_Agency_Upsell_Section( $wp_customize, 'upsell_premium_section', array(
'title' => __( 'Titan Tools Center', 'broker-agency' ),
'button_text' => __( 'GO TO PREMIUM', 'broker-agency' ),
'url' => esc_url( BROKER_AGENCY_BUY_NOW ),
'priority' => 0,
)));
// Add the "Bundle" upsell section
$wp_customize->add_section( new Broker_Agency_Upsell_Section( $wp_customize, 'upsell_bundle_section', array(
'title' => __( 'All themes in Single Package', 'broker-agency' ),
'button_text' => __( 'GET BUNDLE', 'broker-agency' ),
'url' => esc_url( BROKER_AGENCY_BUNDLE ),
'priority' => 1,
)));
}
add_action( 'customize_register', 'broker_agency_customize_register' );
if ( class_exists( 'WP_Customize_Section' ) ) {
class Broker_Agency_Upsell_Section extends WP_Customize_Section {
public $type = 'broker-agency-upsell';
public $button_text = '';
public $url = '';
protected function render() {
?>
<li id="accordion-section-<?php echo esc_attr( $this->id ); ?>" class="broker_agency_upsell_section 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 broker_agency_custom_control_scripts() {
wp_enqueue_script( 'broker-agency-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( 'broker-agency-customizer-css', get_template_directory_uri() . '/assets/css/customizer.css', array(), '1.0' );
}
add_action( 'customize_controls_enqueue_scripts', 'broker_agency_custom_control_scripts' );