summaryrefslogtreecommitdiff
path: root/inc/customizer/custom-controls/description/class-astra-control-description.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/customizer/custom-controls/description/class-astra-control-description.php')
-rw-r--r--inc/customizer/custom-controls/description/class-astra-control-description.php57
1 files changed, 57 insertions, 0 deletions
diff --git a/inc/customizer/custom-controls/description/class-astra-control-description.php b/inc/customizer/custom-controls/description/class-astra-control-description.php
new file mode 100644
index 0000000..dd38119
--- /dev/null
+++ b/inc/customizer/custom-controls/description/class-astra-control-description.php
@@ -0,0 +1,57 @@
+<?php
+/**
+ * Customizer Control: description
+ *
+ * @package Astra
+ * @author Astra
+ * @copyright Copyright (c) 2020, Astra
+ * @link https://wpastra.com/
+ * @since 1.0.0
+ */
+
+// Exit if accessed directly.
+if ( ! defined( 'ABSPATH' ) ) {
+ exit;
+}
+
+/**
+ * A text control with validation for CSS units.
+ */
+class Astra_Control_Description extends WP_Customize_Control {
+
+ /**
+ * The control type.
+ *
+ * @access public
+ * @var string
+ */
+ public $type = 'ast-description';
+
+ /**
+ * The control type.
+ *
+ * @access public
+ * @var string
+ */
+ public $help = '';
+
+ /**
+ * Refresh the parameters passed to the JavaScript via JSON.
+ *
+ * @see WP_Customize_Control::to_json()
+ */
+ public function to_json() {
+ parent::to_json();
+
+ $this->json['label'] = esc_html( $this->label );
+ $this->json['description'] = $this->description;
+ $this->json['help'] = $this->help;
+ }
+
+ /**
+ * Render the control's content.
+ *
+ * @see WP_Customize_Control::render_content()
+ */
+ protected function render_content() {}
+}