| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/class-hestia-customizer-heading.php.tar |
www/wp-content/themes/hestia/inc/customizer/controls/ui/class-hestia-customizer-heading.php 0000644 00000001504 15115103661 0031362 0 ustar 00 home/xbodynamge <?php
/**
* Customizer Control: Hestia_Customizer_Heading.
*
* @since 1.1.56
* @package hestia
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Heading control
*/
class Hestia_Customizer_Heading extends WP_Customize_Control {
/**
* The control type.
*
* @access public
* @var string
*/
public $type = 'hestia-heading';
/**
* 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="hestia-customizer-heading">{{{ data.label }}}</h4>
<?php
}
}