diff options
author | Zach van Rijn <me@zv.io> | 2021-07-21 16:19:29 -0500 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2021-07-21 16:19:29 -0500 |
commit | 69c17f9c1942fd0d6a5ea941636e87723b8a6fe2 (patch) | |
tree | e1d0212147048204b0eede0aa6ff79849ed479da /inc/compatibility/learndash/customizer/class-astra-customizer-register-learndash-section.php | |
parent | 74a7109a2a5ab0d191f26c917ae69e46f0d83b32 (diff) | |
download | blog-ng-69c17f9c1942fd0d6a5ea941636e87723b8a6fe2.tar.gz blog-ng-69c17f9c1942fd0d6a5ea941636e87723b8a6fe2.tar.bz2 blog-ng-69c17f9c1942fd0d6a5ea941636e87723b8a6fe2.tar.xz blog-ng-69c17f9c1942fd0d6a5ea941636e87723b8a6fe2.zip |
dos2unix on all .php files, begin paring down admin page and site branding.
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.php | 100 |
1 files changed, 50 insertions, 50 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 index f9e2370..471def0 100644 --- a/inc/compatibility/learndash/customizer/class-astra-customizer-register-learndash-section.php +++ b/inc/compatibility/learndash/customizer/class-astra-customizer-register-learndash-section.php @@ -1,50 +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();
+<?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(); |