__( 'Dropdown', 'astra-addon' ), 'flyout' => __( 'Flyout', 'astra-addon' ), 'fullscreen' => __( 'Full-Screen', 'astra-addon' ), 'no-toggle' => __( 'No Toggle (Deprecated)', 'astra-addon' ), ); $menu_style_description = __( 'No Toggle style will no longer supported. We recommend you to choose different menu style.', 'astra-addon' ); } else { $menu_style_choices = array( 'default' => __( 'Dropdown', 'astra-addon' ), 'flyout' => __( 'Flyout', 'astra-addon' ), 'fullscreen' => __( 'Full-Screen', 'astra-addon' ), ); $menu_style_description = __( 'No Toggle option has been deprecated.', 'astra-addon' ); } $configs = array( /** * Option: Mobile Menu Style */ array( 'name' => ASTRA_THEME_SETTINGS . '[mobile-above-header-menu-style]', 'section' => 'section-above-header', 'type' => 'control', 'default' => astra_get_option( 'mobile-above-header-menu-style' ), 'title' => __( 'Menu Style', 'astra-addon' ), 'control' => 'ast-select', 'context' => array( 'relation' => 'AND', array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-layout]', 'operator' => '!=', 'value' => 'disabled', ), array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-on-mobile]', 'operator' => '==', 'value' => true, ), array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-merge-menu]', 'operator' => '!=', 'value' => true, ), array( 'relation' => 'OR', array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-section-1]', 'operator' => '==', 'value' => 'menu', ), array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-section-2]', 'operator' => '==', 'value' => 'menu', ), ), ), 'priority' => 102, 'choices' => $menu_style_choices, 'description' => $menu_style_description, ), /** * Option: Mobile Menu Style - Flyout alignments */ array( 'name' => ASTRA_THEME_SETTINGS . '[flyout-mobile-above-header-menu-alignment]', 'section' => 'section-above-header', 'type' => 'control', 'default' => astra_get_option( 'flyout-mobile-above-header-menu-alignment' ), 'title' => __( 'Flyout Menu Alignment', 'astra-addon' ), 'control' => 'ast-select', 'priority' => 102, 'choices' => array( 'left' => __( 'Left', 'astra-addon' ), 'right' => __( 'Right', 'astra-addon' ), ), 'context' => array( array( 'setting' => ASTRA_THEME_SETTINGS . '[mobile-above-header-menu-style]', 'operator' => '==', 'value' => 'flyout', ), ), ), /** * Option: Toggle Button Style */ array( 'name' => ASTRA_THEME_SETTINGS . '[mobile-above-header-toggle-btn-style]', 'section' => 'section-above-header', 'title' => __( 'Toggle Button Style', 'astra-addon' ), 'default' => astra_get_option( 'mobile-above-header-toggle-btn-style' ), 'context' => array( 'relation' => 'AND', array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-layout]', 'operator' => '!=', 'value' => 'disabled', ), array( 'setting' => ASTRA_THEME_SETTINGS . '[mobile-above-header-menu-style]', 'operator' => '!=', 'value' => 'no-toggle', ), array( 'relation' => 'OR', array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-section-1]', 'operator' => '==', 'value' => 'menu', ), array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-section-2]', 'operator' => '==', 'value' => 'menu', ), ), ), 'type' => 'control', 'transport' => 'refresh', 'control' => 'ast-select', 'priority' => 103, 'choices' => array( 'fill' => __( 'Fill', 'astra-addon' ), 'outline' => __( 'Outline', 'astra-addon' ), 'minimal' => __( 'Minimal', 'astra-addon' ), ), ), /** * Option: Toggle Button Color */ array( 'name' => ASTRA_THEME_SETTINGS . '[mobile-above-header-toggle-btn-style-color]', 'default' => astra_get_option( 'mobile-above-header-toggle-btn-style-color' ), 'type' => 'control', 'context' => array( 'relation' => 'AND', array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-layout]', 'operator' => '!=', 'value' => 'disabled', ), array( 'setting' => ASTRA_THEME_SETTINGS . '[mobile-above-header-menu-style]', 'operator' => '!=', 'value' => 'no-toggle', ), array( 'relation' => 'OR', array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-section-1]', 'operator' => '==', 'value' => 'menu', ), array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-section-2]', 'operator' => '==', 'value' => 'menu', ), ), ), 'control' => 'ast-color', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_alpha_color' ), 'title' => __( 'Toggle Button Color', 'astra-addon' ), 'section' => 'section-above-header', 'transport' => 'postMessage', 'priority' => 103, ), /** * Option: Border Radius */ array( 'name' => ASTRA_THEME_SETTINGS . '[mobile-above-header-toggle-btn-border-radius]', 'type' => 'control', 'control' => 'ast-slider', 'transport' => 'postMessage', 'default' => astra_get_option( 'mobile-above-header-toggle-btn-border-radius' ), 'section' => 'section-above-header', 'context' => array( array( 'setting' => ASTRA_THEME_SETTINGS . '[mobile-above-header-menu-style]', 'operator' => '!=', 'value' => 'no-toggle', ), array( 'setting' => ASTRA_THEME_SETTINGS . '[mobile-above-header-toggle-btn-style]', 'operator' => '!=', 'value' => 'minimal', ), ), 'title' => __( 'Border Radius', 'astra-addon' ), 'priority' => 103, 'suffix' => 'px', 'input_attrs' => array( 'min' => 0, 'step' => 1, 'max' => 100, ), ), /** * Option: Mobile Header Menu Border */ array( 'name' => ASTRA_THEME_SETTINGS . '[mobile-above-header-menu-all-border]', 'type' => 'control', 'control' => 'ast-border', 'default' => astra_get_option( 'mobile-above-header-menu-all-border' ), 'section' => 'section-above-header', 'transport' => 'postMessage', 'context' => array( 'relation' => 'AND', array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-layout]', 'operator' => '!=', 'value' => 'disabled', ), array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-on-mobile]', 'operator' => '==', 'value' => true, ), array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-merge-menu]', 'operator' => '!=', 'value' => true, ), array( 'relation' => 'OR', array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-section-1]', 'operator' => '==', 'value' => 'menu', ), array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-section-2]', 'operator' => '==', 'value' => 'menu', ), ), ), 'title' => __( 'Menu Items Border', 'astra-addon' ), 'linked_choices' => true, 'priority' => 125, 'choices' => array( 'top' => __( 'Top', 'astra-addon' ), 'right' => __( 'Right', 'astra-addon' ), 'bottom' => __( 'Bottom', 'astra-addon' ), 'left' => __( 'Left', 'astra-addon' ), ), ), /** * Option: Mobile Header Menu Border Color */ array( 'name' => ASTRA_THEME_SETTINGS . '[mobile-above-header-menu-b-color]', 'type' => 'control', 'control' => 'ast-color', 'divider' => array( 'ast_class' => 'ast-bottom-divider' ), 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_alpha_color' ), 'default' => astra_get_option( 'mobile-above-header-menu-b-color', '#dadada' ), 'transport' => 'postMessage', 'title' => __( 'Menu Items Border Color', 'astra-addon' ), 'context' => array( 'relation' => 'AND', array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-layout]', 'operator' => '!=', 'value' => 'disabled', ), array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-on-mobile]', 'operator' => '==', 'value' => true, ), array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-merge-menu]', 'operator' => '!=', 'value' => true, ), array( 'relation' => 'OR', array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-section-1]', 'operator' => '==', 'value' => 'menu', ), array( 'setting' => ASTRA_THEME_SETTINGS . '[above-header-section-2]', 'operator' => '==', 'value' => 'menu', ), ), ), 'section' => 'section-above-header', 'priority' => 130, ), ); return array_merge( $configurations, $configs ); } } } new Astra_Customizer_Mobile_Above_Header_Configs();