blob: a923fa8c44d6e513a49539f85954344685a8393c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<?php
/**
* A label-only Customizer control for use with Jetpack Search configuration
*
* @package automattic/jetpack
* @since 8.6.0
*/
/**
* Label Control class.
*/
class Label_Control extends WP_Customize_Control {
/**
* Enqueue styles related to this control.
*/
public function enqueue() {
$style_relative_path = 'modules/search/customize-controls/class-label-control.css';
$style_version = Automattic\Jetpack\Search\Helper::get_asset_version( $style_relative_path );
$style_path = plugins_url( $style_relative_path, JETPACK__PLUGIN_FILE );
wp_enqueue_style( 'jetpack-instant-search-customizer-label', $style_path, array( 'customize-controls' ), $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;
}
}
|