<?php
/**
* Customizer Control: oceanwp-info.
*
* @package OceanWP WordPress theme
* @subpackage Controls
* @since 3.4.0
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Range control
*/
class OceanWP_Customizer_Info_Control extends WP_Customize_Control {
/**
* The control type.
*
* @access public
* @var string
*/
public $type = 'oceanwp-info';
/**
* Enqueue control related scripts/styles.
*
* @access public
*/
public function enqueue() {
wp_enqueue_style( 'oceanwp-info', OCEANWP_INC_DIR_URI . 'customizer/assets/min/css/info.min.css', null );
}
/**
* An Underscore (JS) template for this control's content (but not its container).
*
* Class variables for this control class are available in the `data` JS object;
* export custom variables by overriding {@see WP_Customize_Control::to_json()}.
*
* @see WP_Customize_Control::print_template()
*
* @access protected
*/
protected function content_template() {
?>
<h4 class="oceanwp-customizer-info">{{{ data.label }}}</h4>
<div class="description">{{{ data.description }}}</div>
<?php
}
}
|