File: /home/newsnnno/domains/aectv1.com/private_html/blog/wp-content/themes/led-tv/inc/customizer.php
<?php
/**
* LED TV Theme Customizer.
*
* @package LED TV
*/
if ( ! class_exists( 'LED_TV_Customizer' ) ) {
/**
* Customizer Loader
*
* @since 1.0.0
*/
class LED_TV_Customizer {
/**
* Instance
*
* @access private
* @var object
*/
private static $led_tv_instance;
/**
* Initiator
*/
public static function get_instance() {
if ( ! isset( self::$led_tv_instance ) ) {
self::$led_tv_instance = new self;
}
return self::$led_tv_instance;
}
/**
* Constructor
*/
public function __construct() {
/**
* Customizer
*/
add_action( 'customize_preview_init', array( $this, 'led_tv_customize_preview_js' ) );
add_action( 'customize_controls_enqueue_scripts', array( $this, 'led_tv_customizer_script' ) );
add_action( 'customize_register', array( $this, 'led_tv_customizer_register' ) );
add_action( 'after_setup_theme', array( $this, 'led_tv_customizer_settings' ) );
}
/**
* Add postMessage support for site title and description for the Theme Customizer.
*
* @param WP_Customize_Manager $wp_customize Theme Customizer object.
*/
function led_tv_customizer_register( $wp_customize ) {
$wp_customize->get_setting( 'blogname' )->transport = 'postMessage';
$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
$wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage';
$wp_customize->get_setting( 'background_color' )->transport = 'postMessage';
$wp_customize->get_setting('custom_logo')->transport = 'refresh';
/**
* Helper files
*/
require LED_TV_PARENT_INC_DIR . '/customizer/sanitization.php';
}
/**
* Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
*/
function led_tv_customize_preview_js() {
wp_enqueue_script( 'led-tv-customizer', LED_TV_PARENT_INC_URI . '/customizer/assets/js/customizer-preview.js', array( 'customize-preview' ), '20151215', true );
}
function led_tv_customizer_script() {
wp_enqueue_script( 'led-tv-customizer-section', LED_TV_PARENT_INC_URI .'/customizer/assets/js/customizer-section.js', array("jquery"),'', true );
}
// Include customizer customizer settings.
function led_tv_customizer_settings() {
require LED_TV_PARENT_INC_DIR . '/customizer/customizer-options/socialmedia.php';
require LED_TV_PARENT_INC_DIR . '/customizer/customizer-options/header.php';
require LED_TV_PARENT_INC_DIR . '/customizer/customizer-options/upper-header.php';
require LED_TV_PARENT_INC_DIR . '/customizer/customizer-options/frontpage.php';
require LED_TV_PARENT_INC_DIR . '/customizer/customizer-options/footer.php';
require LED_TV_PARENT_INC_DIR . '/customizer/customizer-options/post.php';
require LED_TV_PARENT_INC_DIR . '/customizer/customizer-options/general.php';
require LED_TV_PARENT_INC_DIR . '/customizer/customizer-options/typography.php';
require LED_TV_PARENT_INC_DIR . '/customizer/customizer-pro/class-customize.php';
require LED_TV_PARENT_INC_DIR . '/customizer/customizer-pro/customizer-upgrade-class.php';
require LED_TV_PARENT_INC_DIR . '/customizer/customizer-options/sidebar-option.php';
}
}
}
/**
* Kicking this off by calling 'get_instance()' method
*/
LED_TV_Customizer::get_instance();