oont-contents/plugins/astra-addon/classes/customizer/controls/class-astra-control-customizer-refresh.php
2025-02-08 15:10:23 +01:00

75 lines
1.6 KiB
PHP

<?php
/**
* Customizer Control: Customizer Refresh
*
* @package Astra
* @link https://wpastra.com/
* @since 1.5.0
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Field overrides.
*/
if ( ! class_exists( 'Astra_Control_Customizer_Refresh' ) && class_exists( 'WP_Customize_Control' ) ) :
/**
* Color control (alpha).
*/
// @codingStandardsIgnoreStart
class Astra_Control_Customizer_Refresh extends WP_Customize_Control {
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound
// @codingStandardsIgnoreEnd
/**
* The control type.
*
* @var string
*/
public $type = 'ast-customizer-refresh';
/**
* The color with opacity rgba type.
*
* @var string
*/
public $class = '';
/**
* Refresh the parameters passed to the JavaScript via JSON.
*
* @see WP_Customize_Control::to_json()
*/
public function to_json() {
parent::to_json();
$this->json['class'] = $this->class;
}
/**
* 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()
*/
protected function content_template() {
?>
<a class="button {{{ data.class }}}" onclick="wp.customize.previewer.refresh();" href="#">{{{ data.label }}}</a>
<?php
}
/**
* Render the control's content.
*
* @see WP_Customize_Control::render_content()
*/
protected function render_content() {}
}
endif;