summaryrefslogtreecommitdiff
path: root/inc/customizer/configurations/builder/base/class-astra-social-icon-component-configs.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/customizer/configurations/builder/base/class-astra-social-icon-component-configs.php')
-rw-r--r--inc/customizer/configurations/builder/base/class-astra-social-icon-component-configs.php480
1 files changed, 480 insertions, 0 deletions
diff --git a/inc/customizer/configurations/builder/base/class-astra-social-icon-component-configs.php b/inc/customizer/configurations/builder/base/class-astra-social-icon-component-configs.php
new file mode 100644
index 0000000..91e8006
--- /dev/null
+++ b/inc/customizer/configurations/builder/base/class-astra-social-icon-component-configs.php
@@ -0,0 +1,480 @@
+<?php
+/**
+ * Astra Theme Customizer Configuration Builder.
+ *
+ * @package astra-builder
+ * @author Astra
+ * @copyright Copyright (c) 2020, Astra
+ * @link https://wpastra.com/
+ * @since 3.0.0
+ */
+
+// No direct access, please.
+if ( ! defined( 'ABSPATH' ) ) {
+ exit;
+}
+
+/**
+ * Register Builder Customizer Configurations.
+ *
+ * @since 3.0.0
+ */
+class Astra_Social_Icon_Component_Configs {
+
+ /**
+ * Register Builder Customizer Configurations.
+ *
+ * @param Array $configurations Configurations.
+ * @param string $builder_type Builder Type.
+ * @param string $section Section slug.
+ * @since 3.0.0
+ * @return Array Astra Customizer Configurations with updated configurations.
+ */
+ public static function register_configuration( $configurations, $builder_type = 'header', $section = 'section-hb-social-icons-' ) {
+
+ $social_configs = array();
+
+ $class_obj = Astra_Builder_Header::get_instance();
+ $number_of_social_icons = Astra_Builder_Helper::$num_of_header_social_icons;
+
+ if ( 'footer' === $builder_type ) {
+ $class_obj = Astra_Builder_Footer::get_instance();
+ $number_of_social_icons = Astra_Builder_Helper::$num_of_footer_social_icons;
+ $component_limit = defined( 'ASTRA_EXT_VER' ) ? Astra_Builder_Helper::$component_limit : Astra_Builder_Helper::$num_of_header_social_icons;
+ } else {
+ $component_limit = defined( 'ASTRA_EXT_VER' ) ? Astra_Builder_Helper::$component_limit : Astra_Builder_Helper::$num_of_footer_social_icons;
+ }
+
+ for ( $index = 1; $index <= $component_limit; $index++ ) {
+
+ $_section = $section . $index;
+
+ $_configs = array(
+
+ /*
+ * Builder section
+ */
+ array(
+ 'name' => $_section,
+ 'type' => 'section',
+ 'priority' => 90,
+ /* translators: 1: index */
+ 'title' => ( 1 === $number_of_social_icons ) ? __( 'Social Icons', 'astra' ) : sprintf( __( 'Social Icons %s', 'astra' ), $index ),
+ 'panel' => 'panel-' . $builder_type . '-builder-group',
+ 'clone_index' => $index,
+ 'clone_type' => $builder_type . '-social-icons',
+ ),
+
+ /**
+ * Option: Builder Tabs
+ */
+ array(
+ 'name' => $_section . '-ast-context-tabs',
+ 'section' => $_section,
+ 'type' => 'control',
+ 'control' => 'ast-builder-header-control',
+ 'priority' => 0,
+ 'description' => '',
+ ),
+
+ /**
+ * Option: Social Icons.
+ */
+ array(
+ 'name' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-social-icons-' . $index . ']',
+ 'section' => $_section,
+ 'type' => 'control',
+ 'control' => 'ast-social-icons',
+ 'title' => __( 'Social Icons', 'astra' ),
+ 'transport' => 'postMessage',
+ 'priority' => 1,
+ 'default' => astra_get_option( $builder_type . '-social-icons-' . $index ),
+ 'partial' => array(
+ 'selector' => '.ast-' . $builder_type . '-social-' . $index . '-wrap',
+ 'container_inclusive' => true,
+ 'render_callback' => array( $class_obj, $builder_type . '_social_' . $index ),
+ 'fallback_refresh' => false,
+ ),
+ 'context' => Astra_Builder_Helper::$general_tab,
+ 'divider' => array( 'ast_class' => 'ast-bottom-divider' ),
+ ),
+
+ // Show label Toggle.
+ array(
+ 'name' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-social-' . $index . '-label-toggle]',
+ 'default' => astra_get_option( $builder_type . '-social-' . $index . '-label-toggle' ),
+ 'type' => 'control',
+ 'control' => 'ast-toggle-control',
+ 'section' => $_section,
+ 'priority' => 2,
+ 'title' => __( 'Show Label', 'astra' ),
+ 'transport' => 'postMessage',
+ 'partial' => array(
+ 'selector' => '.ast-' . $builder_type . '-social-' . $index . '-wrap',
+ 'container_inclusive' => true,
+ 'render_callback' => array( $class_obj, $builder_type . '_social_' . $index ),
+ 'fallback_refresh' => false,
+ ),
+ 'context' => Astra_Builder_Helper::$general_tab,
+ 'divider' => array( 'ast_class' => 'ast-bottom-divider' ),
+ ),
+
+ /**
+ * Option: Social Icon Spacing
+ */
+ array(
+ 'name' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-social-' . $index . '-space]',
+ 'section' => $_section,
+ 'priority' => 2,
+ 'transport' => 'postMessage',
+ 'default' => astra_get_option( $builder_type . '-social-' . $index . '-space' ),
+ 'title' => __( 'Icon Spacing', 'astra' ),
+ 'suffix' => 'px',
+ 'type' => 'control',
+ 'control' => 'ast-responsive-slider',
+ 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_slider' ),
+ 'input_attrs' => array(
+ 'min' => 0,
+ 'step' => 1,
+ 'max' => 50,
+ ),
+ 'divider' => array( 'ast_class' => 'ast-bottom-divider' ),
+ 'context' => Astra_Builder_Helper::$design_tab,
+ ),
+
+
+ /**
+ * Option: Social Icon Background Spacing.
+ */
+ array(
+ 'name' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-social-' . $index . '-bg-space]',
+ 'section' => $_section,
+ 'priority' => 2,
+ 'transport' => 'postMessage',
+ 'default' => astra_get_option( $builder_type . '-social-' . $index . '-bg-space' ),
+ 'title' => __( 'Icon Background Spacing', 'astra' ),
+ 'suffix' => 'px',
+ 'type' => 'control',
+ 'control' => 'ast-slider',
+ 'input_attrs' => array(
+ 'min' => 0,
+ 'step' => 1,
+ 'max' => 50,
+ ),
+ 'context' => Astra_Builder_Helper::$design_tab,
+ 'divider' => array( 'ast_class' => 'ast-bottom-divider' ),
+ ),
+
+
+ /**
+ * Option: Social Icon Size
+ */
+ array(
+ 'name' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-social-' . $index . '-size]',
+ 'section' => $_section,
+ 'priority' => 1,
+ 'transport' => 'postMessage',
+ 'default' => astra_get_option( $builder_type . '-social-' . $index . '-size' ),
+ 'title' => __( 'Icon Size', 'astra' ),
+ 'suffix' => 'px',
+ 'type' => 'control',
+ 'control' => 'ast-responsive-slider',
+ 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_slider' ),
+ 'input_attrs' => array(
+ 'min' => 0,
+ 'step' => 1,
+ 'max' => 50,
+ ),
+ 'divider' => array( 'ast_class' => 'ast-bottom-divider' ),
+ 'context' => Astra_Builder_Helper::$design_tab,
+ ),
+
+ /**
+ * Option: Social Icon Radius
+ */
+ array(
+ 'name' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-social-' . $index . '-radius]',
+ 'section' => $_section,
+ 'priority' => 4,
+ 'transport' => 'postMessage',
+ 'default' => astra_get_option( $builder_type . '-social-' . $index . '-radius' ),
+ 'title' => __( 'Icon Radius', 'astra' ),
+ 'suffix' => 'px',
+ 'type' => 'control',
+ 'control' => 'ast-slider',
+ 'input_attrs' => array(
+ 'min' => 0,
+ 'step' => 1,
+ 'max' => 50,
+ ),
+ 'divider' => array( 'ast_class' => 'ast-bottom-divider' ),
+ 'context' => Astra_Builder_Helper::$design_tab,
+ ),
+
+ array(
+ 'name' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-social-' . $index . '-color-type]',
+ 'default' => astra_get_option( $builder_type . '-social-' . $index . '-color-type' ),
+ 'section' => $_section,
+ 'type' => 'control',
+ 'control' => 'ast-selector',
+ 'title' => __( 'Color Type', 'astra' ),
+ 'priority' => 8,
+ 'choices' => array(
+ 'custom' => __( 'Custom', 'astra' ),
+ 'official' => __( 'Official', 'astra' ),
+ ),
+ 'transport' => 'postMessage',
+ 'context' => Astra_Builder_Helper::$design_tab,
+ 'responsive' => false,
+ 'renderAs' => 'text',
+ ),
+
+ /**
+ * Group: Primary Social Colors Group
+ */
+ array(
+ 'name' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-social-' . $index . '-icon-color-group]',
+ 'default' => astra_get_option( $builder_type . '-social-' . $index . '-color-group' ),
+ 'type' => 'control',
+ 'control' => 'ast-color-group',
+ 'title' => __( 'Icon Color', 'astra' ),
+ 'section' => $_section,
+ 'transport' => 'postMessage',
+ 'priority' => 9,
+ 'context' => array(
+ Astra_Builder_Helper::$design_tab_config,
+ array(
+ 'setting' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-social-' . $index . '-color-type]',
+ 'operator' => '==',
+ 'value' => 'custom',
+ ),
+ ),
+ 'responsive' => true,
+ ),
+ array(
+ 'name' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-social-' . $index . '-label-color-group]',
+ 'default' => astra_get_option( $builder_type . '-social-' . $index . '-color-group' ),
+ 'type' => 'control',
+ 'control' => 'ast-color-group',
+ 'title' => __( 'Label Color', 'astra' ),
+ 'section' => $_section,
+ 'transport' => 'postMessage',
+ 'priority' => 9,
+ 'context' => array(
+ Astra_Builder_Helper::$design_tab_config,
+ array(
+ 'setting' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-social-' . $index . '-color-type]',
+ 'operator' => '==',
+ 'value' => 'custom',
+ ),
+ ),
+ 'responsive' => true,
+ ),
+ array(
+ 'name' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-social-' . $index . '-background-color-group]',
+ 'default' => astra_get_option( $builder_type . '-social-' . $index . '-color-group' ),
+ 'type' => 'control',
+ 'control' => 'ast-color-group',
+ 'title' => __( 'Background Color', 'astra' ),
+ 'section' => $_section,
+ 'transport' => 'postMessage',
+ 'priority' => 9,
+ 'context' => array(
+ Astra_Builder_Helper::$design_tab_config,
+ array(
+ 'setting' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-social-' . $index . '-color-type]',
+ 'operator' => '==',
+ 'value' => 'custom',
+ ),
+ ),
+ 'responsive' => true,
+ ),
+
+ /**
+ * Option: Social Text Color
+ */
+ array(
+ 'name' => $builder_type . '-social-' . $index . '-color',
+ 'transport' => 'postMessage',
+ 'default' => astra_get_option( $builder_type . '-social-' . $index . '-color' ),
+ 'type' => 'sub-control',
+ 'parent' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-social-' . $index . '-icon-color-group]',
+ 'section' => $_section,
+ 'tab' => __( 'Normal', 'astra' ),
+ 'control' => 'ast-responsive-color',
+ 'responsive' => true,
+ 'rgba' => true,
+ 'priority' => 5,
+ 'context' => Astra_Builder_Helper::$design_tab,
+ 'title' => __( 'Normal', 'astra' ),
+ ),
+
+ /**
+ * Option: Social Text Hover Color
+ */
+ array(
+ 'name' => $builder_type . '-social-' . $index . '-h-color',
+ 'default' => astra_get_option( $builder_type . '-social-' . $index . '-h-color' ),
+ 'transport' => 'postMessage',
+ 'type' => 'sub-control',
+ 'parent' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-social-' . $index . '-icon-color-group]',
+ 'section' => $_section,
+ 'tab' => __( 'Hover', 'astra' ),
+ 'control' => 'ast-responsive-color',
+ 'responsive' => true,
+ 'rgba' => true,
+ 'priority' => 7,
+ 'context' => Astra_Builder_Helper::$design_tab,
+ 'title' => __( 'Hover', 'astra' ),
+ ),
+
+ /**
+ * Option: Social Label Color
+ */
+ array(
+ 'name' => $builder_type . '-social-' . $index . '-label-color',
+ 'default' => astra_get_option( $builder_type . '-social-' . $index . '-label-color' ),
+ 'transport' => 'postMessage',
+ 'type' => 'sub-control',
+ 'parent' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-social-' . $index . '-label-color-group]',
+ 'section' => $_section,
+ 'tab' => __( 'Normal', 'astra' ),
+ 'control' => 'ast-responsive-color',
+ 'responsive' => true,
+ 'rgba' => true,
+ 'priority' => 8,
+ 'context' => Astra_Builder_Helper::$design_tab,
+ 'title' => __( 'Normal', 'astra' ),
+ ),
+
+ /**
+ * Option: Social Label Hover Color
+ */
+ array(
+ 'name' => $builder_type . '-social-' . $index . '-label-h-color',
+ 'default' => astra_get_option( $builder_type . '-social-' . $index . '-label-h-color' ),
+ 'transport' => 'postMessage',
+ 'type' => 'sub-control',
+ 'parent' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-social-' . $index . '-label-color-group]',
+ 'section' => $_section,
+ 'tab' => __( 'Hover', 'astra' ),
+ 'control' => 'ast-responsive-color',
+ 'responsive' => true,
+ 'rgba' => true,
+ 'priority' => 8,
+ 'context' => Astra_Builder_Helper::$design_tab,
+ 'title' => __( 'Hover', 'astra' ),
+ ),
+
+ /**
+ * Option: Social Background Color
+ */
+ array(
+ 'name' => $builder_type . '-social-' . $index . '-bg-color',
+ 'default' => astra_get_option( $builder_type . '-social-' . $index . '-bg-color' ),
+ 'transport' => 'postMessage',
+ 'type' => 'sub-control',
+ 'parent' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-social-' . $index . '-background-color-group]',
+ 'section' => $_section,
+ 'tab' => __( 'Normal', 'astra' ),
+ 'control' => 'ast-responsive-color',
+ 'responsive' => true,
+ 'rgba' => true,
+ 'priority' => 9,
+ 'context' => Astra_Builder_Helper::$design_tab,
+ 'title' => __( 'Normal', 'astra' ),
+ ),
+
+ /**
+ * Option: Social Background Hover Color
+ */
+ array(
+ 'name' => $builder_type . '-social-' . $index . '-bg-h-color',
+ 'default' => astra_get_option( $builder_type . '-social-' . $index . '-bg-h-color' ),
+ 'transport' => 'postMessage',
+ 'type' => 'sub-control',
+ 'parent' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-social-' . $index . '-background-color-group]',
+ 'section' => $_section,
+ 'tab' => __( 'Hover', 'astra' ),
+ 'control' => 'ast-responsive-color',
+ 'responsive' => true,
+ 'rgba' => true,
+ 'priority' => 11,
+ 'context' => Astra_Builder_Helper::$design_tab,
+ 'title' => __( 'Hover', 'astra' ),
+ ),
+
+ /**
+ * Option: Margin Space
+ */
+ array(
+ 'name' => ASTRA_THEME_SETTINGS . '[' . $_section . '-margin]',
+ 'default' => astra_get_option( $_section . '-margin' ),
+ 'type' => 'control',
+ 'transport' => 'postMessage',
+ 'control' => 'ast-responsive-spacing',
+ 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_spacing' ),
+ 'section' => $_section,
+ 'priority' => 220,
+ 'title' => __( 'Margin', 'astra' ),
+ 'linked_choices' => true,
+ 'unit_choices' => array( 'px', 'em', '%' ),
+ 'choices' => array(
+ 'top' => __( 'Top', 'astra' ),
+ 'right' => __( 'Right', 'astra' ),
+ 'bottom' => __( 'Bottom', 'astra' ),
+ 'left' => __( 'Left', 'astra' ),
+ ),
+ 'context' => Astra_Builder_Helper::$design_tab,
+ ),
+ );
+
+ if ( 'footer' === $builder_type ) {
+
+ $_configs[] = array(
+ 'name' => ASTRA_THEME_SETTINGS . '[footer-social-' . $index . '-alignment]',
+ 'default' => astra_get_option( 'footer-social-' . $index . '-alignment' ),
+ 'type' => 'control',
+ 'control' => 'ast-selector',
+ 'section' => $_section,
+ 'priority' => 6,
+ 'title' => __( 'Alignment', 'astra' ),
+ 'context' => Astra_Builder_Helper::$general_tab,
+ 'transport' => 'postMessage',
+ 'choices' => array(
+ 'left' => 'align-left',
+ 'center' => 'align-center',
+ 'right' => 'align-right',
+ ),
+ );
+ }
+
+ $social_configs[] = Astra_Builder_Base_Configuration::prepare_visibility_tab( $_section, $builder_type );
+
+ $social_configs[] = Astra_Builder_Base_Configuration::prepare_typography_options(
+ $_section,
+ array(
+ Astra_Builder_Helper::$design_tab_config,
+ array(
+ 'setting' => ASTRA_THEME_SETTINGS . '[' . $builder_type . '-social-' . $index . '-label-toggle]',
+ 'operator' => '===',
+ 'value' => true,
+ ),
+ )
+ );
+
+ $social_configs[] = $_configs;
+ }
+
+ $social_configs = call_user_func_array( 'array_merge', $social_configs + array( array() ) );
+ $configurations = array_merge( $configurations, $social_configs );
+
+ return $configurations;
+ }
+}
+
+/**
+ * Kicking this off by creating object of this class.
+ */
+
+new Astra_Social_Icon_Component_Configs();