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/. --- ...ass-astra-customizer-mobile-trigger-configs.php | 399 +++++++++++++++++++++ 1 file changed, 399 insertions(+) create mode 100644 inc/customizer/configurations/builder/header/class-astra-customizer-mobile-trigger-configs.php (limited to 'inc/customizer/configurations/builder/header/class-astra-customizer-mobile-trigger-configs.php') diff --git a/inc/customizer/configurations/builder/header/class-astra-customizer-mobile-trigger-configs.php b/inc/customizer/configurations/builder/header/class-astra-customizer-mobile-trigger-configs.php new file mode 100644 index 0000000..672b024 --- /dev/null +++ b/inc/customizer/configurations/builder/header/class-astra-customizer-mobile-trigger-configs.php @@ -0,0 +1,399 @@ + 'section-header-mobile-trigger', + 'type' => 'section', + 'priority' => 70, + 'title' => __( 'Toggle Button', 'astra' ), + 'panel' => 'panel-header-builder-group', + ), + + /** + * Option: Header Builder Tabs + */ + array( + 'name' => $_section . '-ast-context-tabs', + 'section' => $_section, + 'type' => 'control', + 'control' => 'ast-builder-header-control', + 'priority' => 0, + 'description' => '', + + ), + + /** + * Option: Header Html Editor. + */ + array( + 'name' => ASTRA_THEME_SETTINGS . '[header-trigger-icon]', + 'type' => 'control', + 'control' => 'ast-radio-image', + 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_choices' ), + 'default' => astra_get_option( 'header-trigger-icon' ), + 'title' => __( 'Icons', 'astra' ), + 'section' => $_section, + 'choices' => array( + 'menu' => array( + 'label' => __( 'menu', 'astra' ), + 'path' => Astra_Builder_UI_Controller::fetch_svg_icon( 'mobile_menu' ), + ), + 'menu2' => array( + 'label' => __( 'menu2', 'astra' ), + 'path' => Astra_Builder_UI_Controller::fetch_svg_icon( 'mobile_menu2' ), + ), + 'menu3' => array( + 'label' => __( 'menu3', 'astra' ), + 'path' => Astra_Builder_UI_Controller::fetch_svg_icon( 'mobile_menu3' ), + ), + ), + 'transport' => 'postMessage', + 'partial' => array( + 'selector' => '.ast-button-wrap', + 'render_callback' => array( 'Astra_Builder_UI_Controller', 'render_mobile_trigger' ), + ), + 'priority' => 10, + 'context' => Astra_Builder_Helper::$general_tab, + 'divider' => array( 'ast_class' => 'ast-bottom-divider' ), + ), + + /** + * Option: Toggle Button Style + */ + array( + 'name' => ASTRA_THEME_SETTINGS . '[mobile-header-toggle-btn-style]', + 'default' => astra_get_option( 'mobile-header-toggle-btn-style' ), + 'section' => $_section, + 'title' => __( 'Toggle Button Style', 'astra' ), + 'type' => 'control', + 'control' => 'ast-selector', + 'priority' => 11, + 'choices' => array( + 'fill' => __( 'Fill', 'astra' ), + 'outline' => __( 'Outline', 'astra' ), + 'minimal' => __( 'Minimal', 'astra' ), + ), + 'context' => Astra_Builder_Helper::$general_tab, + 'transport' => 'postMessage', + 'partial' => array( + 'selector' => '.ast-button-wrap', + 'render_callback' => array( 'Astra_Builder_UI_Controller', 'render_mobile_trigger' ), + ), + 'responsive' => false, + 'renderAs' => 'text', + ), + + /** + * Option: Mobile Menu Label + */ + array( + 'name' => ASTRA_THEME_SETTINGS . '[mobile-header-menu-label]', + 'transport' => 'postMessage', + 'partial' => array( + 'selector' => '.ast-button-wrap', + 'render_callback' => array( 'Astra_Builder_UI_Controller', 'render_mobile_trigger' ), + ), + 'default' => astra_get_option( 'mobile-header-menu-label' ), + 'section' => $_section, + 'priority' => 20, + 'title' => __( 'Menu Label', 'astra' ), + 'type' => 'control', + 'control' => 'text', + 'context' => Astra_Builder_Helper::$general_tab, + 'divider' => array( 'ast_class' => 'ast-bottom-divider ast-top-divider' ), + ), + + /** + * Option: Icon Size + */ + array( + 'name' => ASTRA_THEME_SETTINGS . '[mobile-header-toggle-icon-size]', + 'default' => astra_get_option( 'mobile-header-toggle-icon-size' ), + 'type' => 'control', + 'control' => 'ast-slider', + 'section' => $_section, + 'title' => __( 'Icon Size', 'astra' ), + 'priority' => 40, + 'suffix' => 'px', + 'transport' => 'postMessage', + 'input_attrs' => array( + 'min' => 0, + 'step' => 1, + 'max' => 100, + ), + 'context' => Astra_Builder_Helper::$design_tab, + 'divider' => array( 'ast_class' => 'ast-bottom-divider' ), + ), + + /** + * Option: Toggle Button Color + */ + array( + 'name' => ASTRA_THEME_SETTINGS . '[mobile-header-toggle-btn-color]', + 'default' => astra_get_option( 'mobile-header-toggle-btn-color' ), + 'type' => 'control', + 'control' => 'ast-color', + 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_alpha_color' ), + 'title' => __( 'Icon Color', 'astra' ), + 'section' => $_section, + 'transport' => 'postMessage', + 'priority' => 50, + 'context' => Astra_Builder_Helper::$design_tab, + ), + + /** + * Option: Toggle Button Bg Color + */ + array( + 'name' => ASTRA_THEME_SETTINGS . '[mobile-header-toggle-btn-bg-color]', + 'default' => astra_get_option( 'mobile-header-toggle-btn-bg-color' ), + 'type' => 'control', + 'control' => 'ast-color', + 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_alpha_color' ), + 'title' => __( 'Background Color', 'astra' ), + 'section' => $_section, + 'transport' => 'postMessage', + 'priority' => 50, + 'context' => array( + Astra_Builder_Helper::$design_tab_config, + array( + 'setting' => ASTRA_THEME_SETTINGS . '[mobile-header-toggle-btn-style]', + 'operator' => '==', + 'value' => 'fill', + ), + ), + ), + + /** + * Option: Toggle Button Border Size + */ + array( + 'name' => ASTRA_THEME_SETTINGS . '[mobile-header-toggle-btn-border-size]', + 'default' => astra_get_option( 'mobile-header-toggle-btn-border-size' ), + 'type' => 'control', + 'section' => $_section, + 'control' => 'ast-border', + 'transport' => 'postMessage', + 'linked_choices' => true, + 'priority' => 60, + 'title' => __( 'Border Width', 'astra' ), + 'choices' => array( + 'top' => __( 'Top', 'astra' ), + 'right' => __( 'Right', 'astra' ), + 'bottom' => __( 'Bottom', 'astra' ), + 'left' => __( 'Left', 'astra' ), + ), + 'context' => array( + Astra_Builder_Helper::$design_tab_config, + array( + 'setting' => ASTRA_THEME_SETTINGS . '[mobile-header-toggle-btn-style]', + 'operator' => '==', + 'value' => 'outline', + ), + ), + ), + + /** + * Option: Toggle Button Border Color + */ + array( + 'name' => ASTRA_THEME_SETTINGS . '[mobile-header-toggle-border-color]', + 'default' => astra_get_option( 'mobile-header-toggle-border-color' ), + 'type' => 'control', + 'control' => 'ast-color', + 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_alpha_color' ), + 'title' => __( 'Border Color', 'astra' ), + 'section' => $_section, + 'transport' => 'postMessage', + 'priority' => 65, + 'context' => array( + Astra_Builder_Helper::$design_tab_config, + array( + 'setting' => ASTRA_THEME_SETTINGS . '[mobile-header-toggle-btn-style]', + 'operator' => '==', + 'value' => 'outline', + ), + ), + ), + + /** + * Option: Border Radius + */ + array( + 'name' => ASTRA_THEME_SETTINGS . '[mobile-header-toggle-border-radius]', + 'default' => astra_get_option( 'mobile-header-toggle-border-radius' ), + 'type' => 'control', + 'control' => 'ast-slider', + 'section' => $_section, + 'title' => __( 'Border Radius', 'astra' ), + 'priority' => 70, + 'suffix' => 'px', + 'transport' => 'postMessage', + 'input_attrs' => array( + 'min' => 0, + 'step' => 1, + 'max' => 100, + ), + 'context' => array( + Astra_Builder_Helper::$design_tab_config, + array( + 'setting' => ASTRA_THEME_SETTINGS . '[mobile-header-toggle-btn-style]', + 'operator' => '!=', + 'value' => 'minimal', + ), + ), + ), + + /** + * 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' ), + ), + 'divider' => array( 'ast_class' => 'ast-top-divider' ), + 'context' => Astra_Builder_Helper::$design_tab, + ), + ); + + if ( defined( 'ASTRA_EXT_VER' ) && Astra_Ext_Extension::is_active( 'typography' ) ) { + + $typo_configs = array( + + // Option Group: Trigger Typography. + array( + 'name' => ASTRA_THEME_SETTINGS . '[mobile-header-label-typography]', + 'default' => astra_get_option( 'mobile-header-label-typography' ), + 'type' => 'control', + 'control' => 'ast-settings-group', + 'title' => __( 'Typography', 'astra' ), + 'section' => $_section, + 'transport' => 'postMessage', + 'priority' => 70, + 'context' => array( + Astra_Builder_Helper::$design_tab_config, + array( + 'setting' => ASTRA_THEME_SETTINGS . '[mobile-header-menu-label]', + 'operator' => '!=', + 'value' => '', + ), + ), + ), + + // Option: Trigger Font Size. + array( + 'name' => 'mobile-header-label-font-size', + 'default' => astra_get_option( 'mobile-header-label-font-size' ), + 'parent' => ASTRA_THEME_SETTINGS . '[mobile-header-label-typography]', + 'section' => $_section, + 'type' => 'sub-control', + 'priority' => 23, + 'suffix' => 'px', + 'title' => __( 'Size', 'astra' ), + 'control' => 'ast-slider', + 'transport' => 'postMessage', + 'input_attrs' => array( + 'min' => 0, + ), + 'units' => array( + 'px' => 'px', + 'em' => 'em', + ), + 'context' => Astra_Builder_Helper::$design_tab, + ), + ); + + } else { + + $typo_configs = array( + + // Option: Trigger Font Size. + array( + 'name' => ASTRA_THEME_SETTINGS . '[mobile-header-label-font-size]', + 'default' => astra_get_option( 'mobile-header-label-font-size' ), + 'section' => $_section, + 'type' => 'control', + 'priority' => 70, + 'suffix' => 'px', + 'title' => __( 'Font Size', 'astra' ), + 'control' => 'ast-slider', + 'transport' => 'postMessage', + 'input_attrs' => array( + 'min' => 0, + ), + 'units' => array( + 'px' => 'px', + 'em' => 'em', + ), + 'context' => Astra_Builder_Helper::$design_tab, + ), + ); + } + + $_configs = array_merge( $_configs, $typo_configs ); + + return array_merge( $configurations, $_configs ); + } +} + +/** + * Kicking this off by creating object of this class. + */ + +new Astra_Customizer_Mobile_Trigger_Configs(); -- cgit v1.2.3-60-g2f50