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/extend-customizer/class-astra-wp-customize-panel.php | |
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/extend-customizer/class-astra-wp-customize-panel.php')
-rw-r--r-- | inc/customizer/extend-customizer/class-astra-wp-customize-panel.php | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/inc/customizer/extend-customizer/class-astra-wp-customize-panel.php b/inc/customizer/extend-customizer/class-astra-wp-customize-panel.php new file mode 100644 index 0000000..778996a --- /dev/null +++ b/inc/customizer/extend-customizer/class-astra-wp-customize-panel.php @@ -0,0 +1,65 @@ +<?php
+/**
+ * Customizer Control: panel.
+ *
+ * Creates a jQuery color control.
+ *
+ * @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;
+}
+
+if ( class_exists( 'WP_Customize_Panel' ) ) {
+
+ /**
+ * Adds a custom Panel for nested panels / sections.
+ *
+ * @link https://gist.github.com/OriginalEXE/9a6183e09f4cae2f30b006232bb154af
+ * @since 1.0.31
+ * @see WP_Customize_Panel
+ */
+ class Astra_WP_Customize_Panel extends WP_Customize_Panel {
+
+ /**
+ * Panel
+ *
+ * @since 1.0.31
+ * @var string
+ */
+ public $panel;
+
+ /**
+ * Control type.
+ *
+ * @since 1.0.31
+ * @var string
+ */
+ public $type = 'ast_panel';
+
+ /**
+ * Get section parameters for JS.
+ *
+ * @since 1.0.31
+ * @return array Exported parameters.
+ */
+ public function json() {
+
+ $array = wp_array_slice_assoc( (array) $this, array( 'id', 'description', 'priority', 'type', 'panel' ) );
+ $array['title'] = html_entity_decode( $this->title, ENT_QUOTES, get_bloginfo( 'charset' ) );
+ $array['content'] = $this->get_content();
+ $array['active'] = $this->active();
+ $array['instanceNumber'] = $this->instance_number;
+
+ return $array;
+ }
+ }
+
+}
+
|