From 9d4123cee1867ee7199b06bdc92d40611f547ecc Mon Sep 17 00:00:00 2001 From: Zach van Rijn Date: Wed, 21 Jul 2021 14:54:07 -0500 Subject: Initial unmodified import from Astra (Version: 3.6.5) @ /wp-content/themes/astra/. --- .../class-astra-builder-base-configuration.php | 547 +++++++++++++++++++++ 1 file changed, 547 insertions(+) create mode 100644 inc/customizer/configurations/builder/class-astra-builder-base-configuration.php (limited to 'inc/customizer/configurations/builder/class-astra-builder-base-configuration.php') diff --git a/inc/customizer/configurations/builder/class-astra-builder-base-configuration.php b/inc/customizer/configurations/builder/class-astra-builder-base-configuration.php new file mode 100644 index 0000000..8086886 --- /dev/null +++ b/inc/customizer/configurations/builder/class-astra-builder-base-configuration.php @@ -0,0 +1,547 @@ + ASTRA_THEME_SETTINGS . '[' . $section_id . '-padding]', + 'default' => astra_get_option( $section_id . '-padding' ), + 'type' => 'control', + 'transport' => 'postMessage', + 'control' => 'ast-responsive-spacing', + 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_spacing' ), + 'section' => $section_id, + 'priority' => 210, + 'title' => __( 'Padding', '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, + 'divider' => array( 'ast_class' => 'ast-bottom-divider ast-top-divider' ), + ), + + /** + * Option: Padded Layout Custom Width + */ + array( + 'name' => ASTRA_THEME_SETTINGS . '[' . $section_id . '-margin]', + 'default' => astra_get_option( $section_id . '-margin' ), + 'type' => 'control', + 'transport' => 'postMessage', + 'control' => 'ast-responsive-spacing', + 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_spacing' ), + 'section' => $section_id, + '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, + ), + ); + } + + /** + * Prepare Advance Typography configuration. + * + * @param string $section_id section id. + * @param array $required_condition Required Condition. + * @return array + */ + public static function prepare_typography_options( $section_id, $required_condition = array() ) { + + $parent = ASTRA_THEME_SETTINGS . '[' . $section_id . '-typography]'; + + if ( defined( 'ASTRA_EXT_VER' ) && Astra_Ext_Extension::is_active( 'typography' ) ) { + + $_configs = array( + + array( + 'name' => $parent, + 'default' => astra_get_option( $section_id . '-typography' ), + 'type' => 'control', + 'control' => 'ast-settings-group', + 'title' => __( 'Text Font', 'astra' ), + 'section' => $section_id, + 'transport' => 'postMessage', + 'priority' => 16, + 'context' => empty( $required_condition ) ? Astra_Builder_Helper::$design_tab : $required_condition, + ), + + /** + * Option: Font Size + */ + array( + 'name' => 'font-size-' . $section_id, + 'type' => 'sub-control', + 'parent' => $parent, + 'section' => $section_id, + 'control' => 'ast-responsive', + 'default' => astra_get_option( 'font-size-' . $section_id ), + 'transport' => 'postMessage', + 'priority' => 14, + 'title' => __( 'Size', 'astra' ), + 'input_attrs' => array( + 'min' => 0, + ), + 'units' => array( + 'px' => 'px', + 'em' => 'em', + ), + ), + + ); + } else { + + $_configs = array( + + /** + * Option: Font Size + */ + array( + 'name' => ASTRA_THEME_SETTINGS . '[font-size-' . $section_id . ']', + 'type' => 'control', + 'section' => $section_id, + 'control' => 'ast-responsive', + 'default' => astra_get_option( 'font-size-' . $section_id ), + 'transport' => 'postMessage', + 'priority' => 16, + 'title' => __( 'Font Size', 'astra' ), + 'input_attrs' => array( + 'min' => 0, + ), + 'divider' => array( 'ast_class' => 'ast-bottom-divider' ), + 'units' => array( + 'px' => 'px', + 'em' => 'em', + ), + 'context' => empty( $required_condition ) ? Astra_Builder_Helper::$design_tab : $required_condition, + ), + ); + } + + return $_configs; + } + + /** + * Prepare Visibility options. + * + * @param string $_section section id. + * @param string $builder_type Builder Type. + * @return array + */ + public static function prepare_visibility_tab( $_section, $builder_type = 'header' ) { + + $configs = array( + + /** + * Option: Hide on tablet + */ + array( + 'name' => ASTRA_THEME_SETTINGS . '[' . $_section . '-hide-tablet]', + 'type' => 'control', + 'control' => 'ast-toggle-control', + 'default' => astra_get_option( $_section . '-hide-tablet' ), + 'section' => $_section, + 'priority' => 320, + 'title' => __( 'Hide on Tablet', 'astra' ), + 'transport' => 'postMessage', + 'context' => Astra_Builder_Helper::$tablet_general_tab, + ), + + /** + * Option: Hide on mobile + */ + array( + 'name' => ASTRA_THEME_SETTINGS . '[' . $_section . '-hide-mobile]', + 'type' => 'control', + 'control' => 'ast-toggle-control', + 'default' => astra_get_option( $_section . '-hide-mobile' ), + 'section' => $_section, + 'priority' => 330, + 'title' => __( 'Hide on Mobile', 'astra' ), + 'transport' => 'postMessage', + 'context' => Astra_Builder_Helper::$mobile_general_tab, + ), + ); + + if ( 'footer' === $builder_type ) { + /** + * Option: Hide on desktop + */ + $configs[] = array( + 'name' => ASTRA_THEME_SETTINGS . '[' . $_section . '-hide-desktop]', + 'type' => 'control', + 'control' => 'ast-toggle-control', + 'default' => astra_get_option( $_section . '-hide-desktop' ), + 'section' => $_section, + 'priority' => 320, + 'title' => __( 'Hide on Desktop', 'astra' ), + 'transport' => 'postMessage', + 'context' => Astra_Builder_Helper::$desktop_general_tab, + 'divider' => array( 'ast_class' => 'ast-top-divider' ), + ); + } + + return $configs; + } + + /** + * Prepare common options for the widgets by type. + * + * @param string $type type. + * @return array + */ + public static function prepare_widget_options( $type = 'header' ) { + $html_config = array(); + + + if ( 'footer' === $type ) { + $component_limit = defined( 'ASTRA_EXT_VER' ) ? + Astra_Builder_Helper::$component_limit : Astra_Builder_Helper::$num_of_footer_widgets; + } else { + $component_limit = defined( 'ASTRA_EXT_VER' ) ? + Astra_Builder_Helper::$component_limit : Astra_Builder_Helper::$num_of_header_widgets; + } + $astra_has_widgets_block_editor = astra_has_widgets_block_editor(); + for ( $index = 1; $index <= $component_limit; $index++ ) { + + $_section = ( ! $astra_has_widgets_block_editor ) ? 'sidebar-widgets-' . $type . '-widget-' . $index : 'astra-sidebar-widgets-' . $type . '-widget-' . $index; + + $html_config[] = array( + + array( + 'name' => $_section, + 'type' => 'section', + 'priority' => 5, + 'title' => __( 'Widget ', 'astra' ) . $index, + 'panel' => 'panel-' . $type . '-builder-group', + 'clone_index' => $index, + 'clone_type' => $type . '-widget', + 'divider' => array( 'ast_class' => 'ast-bottom-divider' ), + ), + + /** + * Option: Widget title color. + */ + array( + 'name' => ASTRA_THEME_SETTINGS . '[' . $type . '-widget-' . $index . '-title-color]', + 'default' => astra_get_option( $type . '-widget-' . $index . '-title-color' ), + 'title' => __( 'Title Color', 'astra' ), + 'type' => 'control', + 'section' => $_section, + 'priority' => 7, + 'transport' => 'postMessage', + 'control' => 'ast-responsive-color', + 'responsive' => true, + 'divider' => ( ! $astra_has_widgets_block_editor ) ? array( 'ast_class' => 'ast-top-divider' ) : '', + 'rgba' => true, + ), + /** + * Option: Widget Color. + */ + array( + 'name' => ASTRA_THEME_SETTINGS . '[' . $type . '-widget-' . $index . '-color]', + 'default' => astra_get_option( $type . '-widget-' . $index . '-color' ), + 'title' => __( 'Content Color', 'astra' ), + 'type' => 'control', + 'section' => $_section, + 'priority' => 7, + 'transport' => 'postMessage', + 'control' => 'ast-responsive-color', + 'responsive' => true, + 'rgba' => true, + ), + array( + 'name' => ASTRA_THEME_SETTINGS . '[' . $type . '-widget-' . $index . '-link-color-group]', + 'default' => astra_get_option( $type . '-widget-' . $index . '-color-group' ), + 'type' => 'control', + 'control' => 'ast-color-group', + 'title' => __( 'Link Color', 'astra' ), + 'section' => $_section, + 'transport' => 'postMessage', + 'priority' => 7, + 'responsive' => true, + 'divider' => array( 'ast_class' => 'ast-bottom-divider' ), + ), + + /** + * Option: Widget link color. + */ + array( + 'name' => $type . '-widget-' . $index . '-link-color', + 'default' => astra_get_option( $type . '-widget-' . $index . '-link-color' ), + 'parent' => ASTRA_THEME_SETTINGS . '[' . $type . '-widget-' . $index . '-link-color-group]', + 'type' => 'sub-control', + 'section' => $_section, + 'priority' => 3, + 'transport' => 'postMessage', + 'control' => 'ast-responsive-color', + 'responsive' => true, + 'rgba' => true, + 'title' => __( 'Normal', 'astra' ), + ), + + /** + * Option: Widget link color. + */ + array( + 'name' => $type . '-widget-' . $index . '-link-h-color', + 'default' => astra_get_option( $type . '-widget-' . $index . '-link-h-color' ), + 'parent' => ASTRA_THEME_SETTINGS . '[' . $type . '-widget-' . $index . '-link-color-group]', + 'type' => 'sub-control', + 'section' => $_section, + 'priority' => 1, + 'transport' => 'postMessage', + 'control' => 'ast-responsive-color', + 'responsive' => true, + 'rgba' => true, + 'title' => __( 'Hover', 'astra' ), + ), + + /** + * Option: Margin + */ + 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' ), + ), + ), + ); + + if ( 'footer' === $type ) { + $html_config [] = array( + array( + 'name' => ASTRA_THEME_SETTINGS . '[' . $type . '-widget-alignment-' . $index . ']', + 'default' => astra_get_option( $type . '-widget-alignment-' . $index ), + 'type' => 'control', + 'control' => 'ast-selector', + 'section' => $_section, + 'priority' => 5, + 'title' => __( 'Alignment', 'astra' ), + 'transport' => 'postMessage', + 'choices' => array( + 'left' => 'align-left', + 'center' => 'align-center', + 'right' => 'align-right', + ), + 'divider' => ( ! $astra_has_widgets_block_editor ) ? array( 'ast_class' => 'ast-top-divider' ) : '', + ), + ); + } + + if ( defined( 'ASTRA_EXT_VER' ) && Astra_Ext_Extension::is_active( 'typography' ) ) { + $html_config[] = array( + + /** + * Option: Widget Title Typography + */ + array( + 'name' => ASTRA_THEME_SETTINGS . '[' . $type . '-widget-' . $index . '-text-typography]', + 'default' => astra_get_option( $type . '-widget-' . $index . '-text-typography' ), + 'type' => 'control', + 'control' => 'ast-settings-group', + 'title' => __( 'Title Font', 'astra' ), + 'section' => $_section, + 'transport' => 'postMessage', + 'priority' => 90, + 'divider' => array( 'ast_class' => 'ast-bottom-divider' ), + ), + + + /** + * Option: Widget Title Font Size + */ + array( + 'name' => $type . '-widget-' . $index . '-font-size', + 'default' => astra_get_option( $type . '-widget-' . $index . '-font-size' ), + 'parent' => ASTRA_THEME_SETTINGS . '[' . $type . '-widget-' . $index . '-text-typography]', + 'transport' => 'postMessage', + 'title' => __( 'Size', 'astra' ), + 'type' => 'sub-control', + 'section' => $_section, + 'control' => 'ast-responsive', + 'input_attrs' => array( + 'min' => 0, + ), + 'priority' => 2, + 'units' => array( + 'px' => 'px', + 'em' => 'em', + ), + ), + + /** + * Option: Widget Content Typography + */ + array( + 'name' => ASTRA_THEME_SETTINGS . '[' . $type . '-widget-' . $index . '-content-typography]', + 'default' => astra_get_option( $type . '-widget-' . $index . '-content-typography' ), + 'type' => 'control', + 'control' => 'ast-settings-group', + 'title' => __( 'Content Font', 'astra' ), + 'section' => $_section, + 'transport' => 'postMessage', + 'priority' => 91, + ), + + /** + * Option: Widget Content Font Size + */ + array( + 'name' => $type . '-widget-' . $index . '-content-font-size', + 'default' => astra_get_option( $type . '-widget-' . $index . '-content-font-size' ), + 'parent' => ASTRA_THEME_SETTINGS . '[' . $type . '-widget-' . $index . '-content-typography]', + 'transport' => 'postMessage', + 'title' => __( 'Size', 'astra' ), + 'type' => 'sub-control', + 'section' => $_section, + 'control' => 'ast-responsive', + 'input_attrs' => array( + 'min' => 0, + ), + 'priority' => 2, + 'units' => array( + 'px' => 'px', + 'em' => 'em', + ), + ), + ); + } else { + $html_config[] = array( + + /** + * Option: Widget Title Font Size + */ + array( + 'name' => ASTRA_THEME_SETTINGS . '[' . $type . '-widget-' . $index . '-font-size]', + 'default' => astra_get_option( $type . '-widget-' . $index . '-font-size' ), + 'transport' => 'postMessage', + 'title' => __( 'Title Font Size', 'astra' ), + 'type' => 'control', + 'section' => $_section, + 'control' => 'ast-responsive', + 'input_attrs' => array( + 'min' => 0, + ), + 'priority' => 90, + 'units' => array( + 'px' => 'px', + 'em' => 'em', + ), + ), + + /** + * Option: Widget Content Font Size + */ + array( + 'name' => ASTRA_THEME_SETTINGS . '[' . $type . '-widget-' . $index . '-content-font-size]', + 'default' => astra_get_option( $type . '-widget-' . $index . '-content-font-size' ), + 'transport' => 'postMessage', + 'title' => __( 'Content Font Size', 'astra' ), + 'type' => 'control', + 'section' => $_section, + 'control' => 'ast-responsive', + 'input_attrs' => array( + 'min' => 0, + ), + 'priority' => 91, + 'units' => array( + 'px' => 'px', + 'em' => 'em', + ), + ), + ); + } + + $html_config[] = self::prepare_visibility_tab( $_section, $type ); + + } + + return call_user_func_array( 'array_merge', $html_config + array( array() ) ); + + } + +} + +/** + * Prepare if class 'Astra_Builder_Base_Configuration' exist. + * Kicking this off by calling 'get_instance()' method + */ +Astra_Builder_Base_Configuration::get_instance(); -- cgit v1.2.3-70-g09d2