summaryrefslogtreecommitdiff
path: root/inc/compatibility/woocommerce/customizer/class-astra-customizer-register-woo-section.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/compatibility/woocommerce/customizer/class-astra-customizer-register-woo-section.php')
-rw-r--r--inc/compatibility/woocommerce/customizer/class-astra-customizer-register-woo-section.php148
1 files changed, 74 insertions, 74 deletions
diff --git a/inc/compatibility/woocommerce/customizer/class-astra-customizer-register-woo-section.php b/inc/compatibility/woocommerce/customizer/class-astra-customizer-register-woo-section.php
index e075ba1..fe6df52 100644
--- a/inc/compatibility/woocommerce/customizer/class-astra-customizer-register-woo-section.php
+++ b/inc/compatibility/woocommerce/customizer/class-astra-customizer-register-woo-section.php
@@ -1,74 +1,74 @@
-<?php
-/**
- * Register customizer panels & sections fro Woocommerce.
- *
- * @package Astra
- * @author Astra
- * @copyright Copyright (c) 2020, Astra
- * @link https://wpastra.com/
- * @since Astra 1.1.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_Woo_Section' ) ) {
-
- /**
- * Customizer Sanitizes Initial setup
- */
- class Astra_Customizer_Register_Woo_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.4.3
- * @return Array Astra Customizer Configurations with updated configurations.
- */
- public function register_configuration( $configurations, $wp_customize ) {
-
- $configs = array(
-
- array(
- 'name' => 'section-woo-general',
- 'title' => __( 'General', 'astra' ),
- 'type' => 'section',
- 'priority' => 10,
- 'panel' => 'woocommerce',
- ),
- array(
- 'name' => 'section-woo-shop',
- 'title' => __( 'Shop', 'astra' ),
- 'type' => 'section',
- 'priority' => 20,
- 'panel' => 'woocommerce',
- ),
-
- array(
- 'name' => 'section-woo-shop-single',
- 'type' => 'section',
- 'title' => __( 'Single Product', 'astra' ),
- 'priority' => 12,
- 'panel' => 'woocommerce',
- ),
-
- array(
- 'name' => 'section-woo-shop-cart',
- 'type' => 'section',
- 'title' => __( 'Cart', 'astra' ),
- 'priority' => 20,
- 'panel' => 'woocommerce',
- ),
- );
-
- return array_merge( $configurations, $configs );
- }
- }
-}
-
-
-new Astra_Customizer_Register_Woo_Section();
+<?php
+/**
+ * Register customizer panels & sections fro Woocommerce.
+ *
+ * @package Astra
+ * @author Astra
+ * @copyright Copyright (c) 2020, Astra
+ * @link https://wpastra.com/
+ * @since Astra 1.1.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_Woo_Section' ) ) {
+
+ /**
+ * Customizer Sanitizes Initial setup
+ */
+ class Astra_Customizer_Register_Woo_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.4.3
+ * @return Array Astra Customizer Configurations with updated configurations.
+ */
+ public function register_configuration( $configurations, $wp_customize ) {
+
+ $configs = array(
+
+ array(
+ 'name' => 'section-woo-general',
+ 'title' => __( 'General', 'astra' ),
+ 'type' => 'section',
+ 'priority' => 10,
+ 'panel' => 'woocommerce',
+ ),
+ array(
+ 'name' => 'section-woo-shop',
+ 'title' => __( 'Shop', 'astra' ),
+ 'type' => 'section',
+ 'priority' => 20,
+ 'panel' => 'woocommerce',
+ ),
+
+ array(
+ 'name' => 'section-woo-shop-single',
+ 'type' => 'section',
+ 'title' => __( 'Single Product', 'astra' ),
+ 'priority' => 12,
+ 'panel' => 'woocommerce',
+ ),
+
+ array(
+ 'name' => 'section-woo-shop-cart',
+ 'type' => 'section',
+ 'title' => __( 'Cart', 'astra' ),
+ 'priority' => 20,
+ 'panel' => 'woocommerce',
+ ),
+ );
+
+ return array_merge( $configurations, $configs );
+ }
+ }
+}
+
+
+new Astra_Customizer_Register_Woo_Section();