array( 'header_contact_mail', 'header_contact_phone' ), 'style' => array() ); $wp_customize->add_section( 'botiga_section_hb_component__contact_info', array( 'title' => esc_html__( 'Contact Info', 'botiga' ), 'panel' => 'botiga_panel_header' ) ); $wp_customize->add_setting( 'botiga_section_hb_component__contact_info_tabs', array( 'default' => '', 'sanitize_callback' => 'esc_attr' ) ); $wp_customize->add_control( new Botiga_Tab_Control ( $wp_customize, 'botiga_section_hb_component__contact_info_tabs', array( 'label' => '', 'section' => 'botiga_section_hb_component__contact_info', 'controls_general' => json_encode( array_merge( array( '#customize-control-bhfb_contact_info_display_inline' ), array_map( function( $name ){ return "#customize-control-$name"; }, $opts_to_move[ 'general' ] ) ) ), 'controls_design' => json_encode( array_merge( array( '#customize-control-bhfb_contact_info_icon', '#customize-control-bhfb_contact_info_text', // Sticky Active State '#customize-control-bhfb_contact_info_sticky_title', '#customize-control-bhfb_contact_info_icon_sticky', '#customize-control-bhfb_contact_info_text_sticky', ), array_map( function( $name ){ return "#customize-control-$name"; }, $opts_to_move[ 'style' ] ) ) ), 'priority' => 20 ) ) ); $wp_customize->add_setting( 'bhfb_contact_info_display_inline', array( 'default' => 0, 'sanitize_callback' => 'botiga_sanitize_checkbox', 'transport' => 'postMessage' ) ); $wp_customize->add_control( new Botiga_Toggle_Control( $wp_customize, 'bhfb_contact_info_display_inline', array( 'label' => esc_html__( 'Display Inline', 'botiga' ), 'section' => 'botiga_section_hb_component__contact_info', 'priority' => 21 ) ) ); // Icons Color $wp_customize->add_setting( 'bhfb_contact_info_icon_color', array( 'default' => '#212121', 'sanitize_callback' => 'botiga_sanitize_hex_rgba', 'transport' => 'postMessage' ) ); $wp_customize->add_setting( 'bhfb_contact_info_icon_color_hover', array( 'default' => '#757575', 'sanitize_callback' => 'botiga_sanitize_hex_rgba', 'transport' => 'postMessage' ) ); $wp_customize->add_control( new Botiga_Color_Group( $wp_customize, 'bhfb_contact_info_icon', array( 'label' => esc_html__( 'Icons Color', 'botiga' ), 'section' => 'botiga_section_hb_component__contact_info', 'settings' => array( 'normal' => 'bhfb_contact_info_icon_color', 'hover' => 'bhfb_contact_info_icon_color_hover', ), 'priority' => 25 ) ) ); // Text Color $wp_customize->add_setting( 'bhfb_contact_info_text_color', array( 'default' => '#212121', 'sanitize_callback' => 'botiga_sanitize_hex_rgba', 'transport' => 'postMessage' ) ); $wp_customize->add_setting( 'bhfb_contact_info_text_color_hover', array( 'default' => '#757575', 'sanitize_callback' => 'botiga_sanitize_hex_rgba', 'transport' => 'postMessage' ) ); $wp_customize->add_control( new Botiga_Color_Group( $wp_customize, 'bhfb_contact_info_text', array( 'label' => esc_html__( 'Text Color', 'botiga' ), 'section' => 'botiga_section_hb_component__contact_info', 'settings' => array( 'normal' => 'bhfb_contact_info_text_color', 'hover' => 'bhfb_contact_info_text_color_hover', ), 'priority' => 35 ) ) ); // Sticky Header - Title $wp_customize->add_setting( 'bhfb_contact_info_sticky_title', array( 'default' => '', 'sanitize_callback' => 'esc_attr' ) ); $wp_customize->add_control( new Botiga_Text_Control( $wp_customize, 'bhfb_contact_info_sticky_title', array( 'label' => esc_html__( 'Sticky Header - Active State', 'botiga' ), 'description' => esc_html__( 'Control the colors when the sticky header state is active.', 'botiga' ), 'section' => 'botiga_section_hb_component__contact_info', 'active_callback' => 'botiga_sticky_header_enabled', 'priority' => 42 ) ) ); // Sticky Header - Icons Color $wp_customize->add_setting( 'bhfb_contact_info_icon_sticky_color', array( 'default' => '#212121', 'sanitize_callback' => 'botiga_sanitize_hex_rgba', 'transport' => 'postMessage' ) ); $wp_customize->add_setting( 'bhfb_contact_info_icon_sticky_color_hover', array( 'default' => '#757575', 'sanitize_callback' => 'botiga_sanitize_hex_rgba', 'transport' => 'postMessage' ) ); $wp_customize->add_control( new Botiga_Color_Group( $wp_customize, 'bhfb_contact_info_icon_sticky', array( 'label' => esc_html__( 'Icons Color', 'botiga' ), 'section' => 'botiga_section_hb_component__contact_info', 'settings' => array( 'normal' => 'bhfb_contact_info_icon_sticky_color', 'hover' => 'bhfb_contact_info_icon_sticky_color_hover', ), 'active_callback' => 'botiga_sticky_header_enabled', 'priority' => 43 ) ) ); // Sticky Header - Text Color $wp_customize->add_setting( 'bhfb_contact_info_text_sticky_color', array( 'default' => '#212121', 'sanitize_callback' => 'botiga_sanitize_hex_rgba', 'transport' => 'postMessage' ) ); $wp_customize->add_setting( 'bhfb_contact_info_text_sticky_color_hover', array( 'default' => '#757575', 'sanitize_callback' => 'botiga_sanitize_hex_rgba', 'transport' => 'postMessage' ) ); $wp_customize->add_control( new Botiga_Color_Group( $wp_customize, 'bhfb_contact_info_text_sticky', array( 'label' => esc_html__( 'Text Color', 'botiga' ), 'section' => 'botiga_section_hb_component__contact_info', 'settings' => array( 'normal' => 'bhfb_contact_info_text_sticky_color', 'hover' => 'bhfb_contact_info_text_sticky_color_hover', ), 'active_callback' => 'botiga_sticky_header_enabled', 'priority' => 45 ) ) ); // Move existing options. $priority = 50; foreach( $opts_to_move as $control_tabs ) { foreach( $control_tabs as $option_name ) { if( $wp_customize->get_control( $option_name ) === NULL ) { continue; } $wp_customize->get_control( $option_name )->section = 'botiga_section_hb_component__contact_info'; $wp_customize->get_control( $option_name )->priority = $priority; $wp_customize->get_control( $option_name )->active_callback = function(){}; $priority++; } } // @codingStandardsIgnoreEnd WPThemeReview.CoreFunctionality.PrefixAllGlobals.NonPrefixedVariableFound