diff options
author | Zach van Rijn <me@zv.io> | 2021-07-21 14:54:07 -0500 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2021-07-21 14:54:07 -0500 |
commit | 9d4123cee1867ee7199b06bdc92d40611f547ecc (patch) | |
tree | 6d864e2725242863afed1f8ba12d9c7a9bc63a69 /inc/customizer/custom-controls/customizer-link | |
download | blog-ng-9d4123cee1867ee7199b06bdc92d40611f547ecc.tar.gz blog-ng-9d4123cee1867ee7199b06bdc92d40611f547ecc.tar.bz2 blog-ng-9d4123cee1867ee7199b06bdc92d40611f547ecc.tar.xz blog-ng-9d4123cee1867ee7199b06bdc92d40611f547ecc.zip |
Initial unmodified import from Astra (Version: 3.6.5) @ /wp-content/themes/astra/.
Diffstat (limited to 'inc/customizer/custom-controls/customizer-link')
-rw-r--r-- | inc/customizer/custom-controls/customizer-link/class-astra-control-customizer-link.php | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/inc/customizer/custom-controls/customizer-link/class-astra-control-customizer-link.php b/inc/customizer/custom-controls/customizer-link/class-astra-control-customizer-link.php new file mode 100644 index 0000000..a1af417 --- /dev/null +++ b/inc/customizer/custom-controls/customizer-link/class-astra-control-customizer-link.php @@ -0,0 +1,69 @@ +<?php
+/**
+ * Customizer Control: Customizer Link
+ *
+ * @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_Customizer_Link extends WP_Customize_Control {
+
+ /**
+ * The control type.
+ *
+ * @access public
+ * @var string
+ */
+ public $type = 'ast-customizer-link';
+
+ /**
+ * Link text to be added inside the anchor tag.
+ *
+ * @var string
+ */
+ public $link_text = '';
+
+ /**
+ * Linked customizer section.
+ *
+ * @var string
+ */
+ public $linked = '';
+
+ /**
+ * Linked customizer section.
+ *
+ * @var string
+ */
+ public $link_type = '';
+
+ /**
+ * Refresh the parameters passed to the JavaScript via JSON.
+ *
+ * @see WP_Customize_Control::to_json()
+ */
+ public function to_json() {
+ parent::to_json();
+ $this->json['link_text'] = $this->link_text;
+ $this->json['linked'] = $this->linked;
+ $this->json['link_type'] = $this->link_type;
+ }
+
+ /**
+ * Render the control's content.
+ *
+ * @see WP_Customize_Control::render_content()
+ */
+ protected function render_content() {}
+}
|