kollapsminoriteten/wp-content/plugins/jetpack/modules/search/customize-controls/class-label-control.php

50 lines
1.3 KiB
PHP
Raw Normal View History

2020-09-15 14:30:05 +02:00
<?php
/**
* A label-only Customizer control for use with Jetpack Search configuration
*
* @package jetpack
* @since 8.6.0
*/
/**
* Label Control class.
*/
class Label_Control extends WP_Customize_Control {
/**
* Enqueue styles related to this control.
*/
public function enqueue() {
2020-12-10 14:04:11 +01:00
require_once dirname( __DIR__ ) . '/class.jetpack-search-helpers.php';
2020-09-15 14:30:05 +02:00
$style_relative_path = 'modules/search/customize-controls/class-label-control.css';
$style_version = Jetpack_Search_Helpers::get_asset_version( $style_relative_path );
$style_path = plugins_url( $style_relative_path, JETPACK__PLUGIN_FILE );
wp_enqueue_style( 'jetpack-instant-search', $style_path, array(), $style_version );
}
/**
* Override rendering for custom class name; omit element ID.
*/
protected function render() {
echo '<li class="customize-control customize-label-control">';
$this->render_content();
echo '</li>';
}
/**
* Override content rendering.
*/
protected function render_content() {
if ( ! empty( $this->label ) ) : ?>
<label class="customize-control-title">
<?php echo esc_html( $this->label ); ?>
</label>
<?php endif; ?>
<?php if ( ! empty( $this->description ) ) : ?>
<span class="description customize-control-description">
<?php echo esc_html( $this->description ); ?>
</span>
<?php
endif;
}
}