File: /home/bt667/public_html/wp-content/themes/news-event/inc/customizer/base.php
<?php
/**
* Custom Controls
*
* @package News Event
* @since 1.0.0
*/
if( class_exists( 'WP_Customize_Control' ) ) :
// base control class
class News_Event_WP_Base_Control extends \WP_Customize_Control {
/**
* List of controls for this theme.
*
* @since 1.0.0
*/
protected $type_array = array();
public $tab = 'general';
/**
* Add custom JSON parameters to use in the JS template.
*
* @since 1.0.0
* @access public
* @return void
*/
public function to_json() {
parent::to_json();
$this->json['default'] = $this->setting->default;
if( $this->tab && $this->type != 'section-tab' ) {
$this->json['tab'] = $this->tab;
}
}
/**
* Generate the unique identifier for the control
*
*/
function identifier_id() {
return apply_filters( 'news_event_unique_identifier', $this->type );
}
/**
* Override control's content.
*
*/
public function render_content() {
?>
<div class="<?php echo esc_attr( $this->identifier_id() ); ?>" data-setting="<?php if( isset( $this->setting->id ) ) echo esc_attr( $this->setting->id ); ?>"></div>
<?php
}
}
endif;