summaryrefslogtreecommitdiff
path: root/inc/compatibility/learndash/customizer/class-astra-customizer-register-learndash-section.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/compatibility/learndash/customizer/class-astra-customizer-register-learndash-section.php')
-rw-r--r--inc/compatibility/learndash/customizer/class-astra-customizer-register-learndash-section.php50
1 files changed, 50 insertions, 0 deletions
diff --git a/inc/compatibility/learndash/customizer/class-astra-customizer-register-learndash-section.php b/inc/compatibility/learndash/customizer/class-astra-customizer-register-learndash-section.php
new file mode 100644
index 0000000..f9e2370
--- /dev/null
+++ b/inc/compatibility/learndash/customizer/class-astra-customizer-register-learndash-section.php
@@ -0,0 +1,50 @@
+<?php
+/**
+ * Register customizer panels & sections.
+ *
+ * @package Astra
+ * @author Brainstorm Force
+ * @copyright Copyright (c) 2020, Brainstorm Force
+ * @link https://www.brainstormforce.com
+ * @since 1.2.0
+ * @since 1.4.6 Chnaged to using Astra_Customizer API
+ */
+
+if ( ! defined( 'ABSPATH' ) ) {
+ exit; // Exit if accessed directly.
+}
+
+if ( ! class_exists( 'Astra_Customizer_Register_Learndash_Section' ) ) {
+
+ /**
+ * Customizer Sanitizes Initial setup
+ */
+ class Astra_Customizer_Register_Learndash_Section extends Astra_Customizer_Config_Base {
+
+ /**
+ * Register Panels and Sections for Customizer.
+ *
+ * @param Array $configurations Astra Customizer Configurations.
+ * @param WP_Customize_Manager $wp_customize instance of WP_Customize_Manager.
+ * @since 1.2.0
+ * @since 1.4.6 Chnaged to using Astra_Customizer API
+ * @return Array Astra Customizer Configurations with updated configurations.
+ */
+ public function register_configuration( $configurations, $wp_customize ) {
+
+ $configs = array(
+ array(
+ 'type' => 'section',
+ 'name' => 'section-learndash',
+ 'priority' => 65,
+ 'title' => __( 'LearnDash', 'astra' ),
+ ),
+ );
+
+ return array_merge( $configurations, $configs );
+ }
+ }
+}
+
+
+new Astra_Customizer_Register_Learndash_Section();