add_section(
'botiga_section_mobile_header',
array(
'title' => esc_html__( 'Mobile header', 'botiga'),
'panel' => 'botiga_panel_header',
)
);
$wp_customize->add_setting(
'botiga_mobile_header_tabs',
array(
'default' => '',
'sanitize_callback' => 'esc_attr'
)
);
$wp_customize->add_control(
new Botiga_Tab_Control (
$wp_customize,
'botiga_mobile_header_tabs',
array(
'label' => '',
'section' => 'botiga_section_mobile_header',
'controls_general' => json_encode( array( '#customize-control-header_layout_mobile','#customize-control-header_components_mobile','#customize-control-mobile_header_divider_1','#customize-control-header_offcanvas_mode','#customize-control-header_components_offcanvas','#customize-control-mobile_header_divider_2','#customize-control-mobile_menu_alignment','#customize-control-mobile_menu_link_separator','#customize-control-mobile_menu_link_spacing','#customize-control-mobile_menu_icon', ) ),
'controls_design' => json_encode( array( '#customize-control-mobile_header_bar_title','#customize-control-mobile_header_offcanvas_title','#customize-control-mobile_header_separator_title','#customize-control-mobile_header_background','#customize-control-mobile_header_color','#customize-control-mobile_header_padding','#customize-control-mobile_header_divider_3','#customize-control-offcanvas_menu_background','#customize-control-offcanvas_menu_color','#customize-control-mobile_header_divider_4','#customize-control-mobile_header_separator_width','#customize-control-link_separator_color', ) ),
)
)
);
//Layout
$botiga_choices = botiga_mobile_header_layouts();
$wp_customize->add_setting(
'header_layout_mobile',
array(
'default' => 'header_mobile_layout_1',
'sanitize_callback' => 'sanitize_key',
)
);
$wp_customize->add_control(
new Botiga_Radio_Images(
$wp_customize,
'header_layout_mobile',
array(
'label' => esc_html__( 'Layout', 'botiga' ),
'section' => 'botiga_section_mobile_header',
'cols' => 2,
'choices' => $botiga_choices
)
)
);
$botiga_header_components = botiga_header_elements();
$botiga_default_components = botiga_get_default_header_components();
$wp_customize->add_setting( 'header_components_mobile', array(
'default' => $botiga_default_components['mobile'],
'sanitize_callback' => 'botiga_sanitize_header_components'
) );
$wp_customize->add_control( new \Kirki\Control\Sortable( $wp_customize, 'header_components_mobile', array(
'label' => esc_html__( 'Additional elements', 'botiga' ),
'section' => 'botiga_section_mobile_header',
'choices' => $botiga_header_components,
) ) );
$wp_customize->add_setting( 'mobile_header_divider_1',
array(
'sanitize_callback' => 'esc_attr'
)
);
$wp_customize->add_control( new Botiga_Divider_Control( $wp_customize, 'mobile_header_divider_1',
array(
'section' => 'botiga_section_mobile_header',
)
)
);
$wp_customize->add_setting(
'header_offcanvas_mode',
array(
'default' => 'layout1',
'sanitize_callback' => 'sanitize_key',
)
);
$wp_customize->add_control(
new Botiga_Radio_Images(
$wp_customize,
'header_offcanvas_mode',
array(
'label' => esc_html__( 'Offcanvas mode', 'botiga' ),
'section' => 'botiga_section_mobile_header',
'cols' => 2,
'choices' => array(
'layout1' => array(
'label' => esc_html__( 'Layout 1', 'botiga' ),
'url' => '%s/assets/img/oc1.svg'
),
'layout2' => array(
'label' => esc_html__( 'Layout 2', 'botiga' ),
'url' => '%s/assets/img/oc2.svg'
),
)
)
)
);
$wp_customize->add_setting( 'header_components_offcanvas', array(
'default' => $botiga_default_components['offcanvas'],
'sanitize_callback' => 'botiga_sanitize_header_components'
) );
$wp_customize->add_control( new \Kirki\Control\Sortable( $wp_customize, 'header_components_offcanvas', array(
'label' => esc_html__( 'Additional offcanvas elements', 'botiga' ),
'section' => 'botiga_section_mobile_header',
'choices' => $botiga_header_components,
) ) );
$wp_customize->add_setting( 'mobile_header_divider_2',
array(
'sanitize_callback' => 'esc_attr'
)
);
$wp_customize->add_control( new Botiga_Divider_Control( $wp_customize, 'mobile_header_divider_2',
array(
'section' => 'botiga_section_mobile_header',
)
)
);
$wp_customize->add_setting( 'mobile_menu_alignment',
array(
'default' => 'left',
'sanitize_callback' => 'botiga_sanitize_text',
'transport' => 'postMessage'
)
);
$wp_customize->add_control( new Botiga_Radio_Buttons( $wp_customize, 'mobile_menu_alignment',
array(
'label' => esc_html__( 'Link alignment', 'botiga' ),
'section' => 'botiga_section_mobile_header',
'choices' => array(
'left' => '',
'center' => '',
'right' => '',
)
)
) );
$wp_customize->add_setting(
'mobile_menu_link_separator',
array(
'default' => 0,
'sanitize_callback' => 'botiga_sanitize_checkbox',
)
);
$wp_customize->add_control(
new Botiga_Toggle_Control(
$wp_customize,
'mobile_menu_link_separator',
array(
'label' => esc_html__( 'Link separator', 'botiga' ),
'section' => 'botiga_section_mobile_header',
)
)
);
$wp_customize->add_setting( 'mobile_menu_link_spacing', array(
'default' => 20,
'sanitize_callback' => 'absint',
'transport' => 'postMessage'
) );
$wp_customize->add_control( new Botiga_Responsive_Slider( $wp_customize, 'mobile_menu_link_spacing',
array(
'label' => esc_html__( 'Link spacing', 'botiga' ),
'section' => 'botiga_section_mobile_header',
'is_responsive' => 0,
'settings' => array (
'size_desktop' => 'mobile_menu_link_spacing',
),
'input_attrs' => array (
'min' => 0,
'max' => 50,
'step' => 1
),
)
) );
$wp_customize->add_setting( 'mobile_menu_icon',
array(
'default' => 'mobile-icon2',
'sanitize_callback' => 'botiga_sanitize_text'
)
);
$wp_customize->add_control( new Botiga_Radio_Buttons( $wp_customize, 'mobile_menu_icon',
array(
'label' => esc_html__( 'Menu icon', 'botiga' ),
'section' => 'botiga_section_mobile_header',
'choices' => array(
'mobile-icon1' => '',
'mobile-icon2' => '',
'mobile-icon3' => '',
'mobile-icon4' => '',
)
)
) );
/**
* Styling
*/
$wp_customize->add_setting( 'mobile_header_bar_title',
array(
'default' => '',
'sanitize_callback' => 'esc_attr'
)
);
$wp_customize->add_control( new Botiga_Text_Control( $wp_customize, 'mobile_header_bar_title',
array(
'label' => esc_html__( 'Menu bar', 'botiga' ),
'section' => 'botiga_section_mobile_header',
)
)
);
$wp_customize->add_setting(
'mobile_header_background',
array(
'default' => '#fff',
'sanitize_callback' => 'botiga_sanitize_hex_rgba',
'transport' => 'postMessage'
)
);
$wp_customize->add_control(
new Botiga_Alpha_Color(
$wp_customize,
'mobile_header_background',
array(
'label' => esc_html__( 'Background color', 'botiga' ),
'section' => 'botiga_section_mobile_header',
)
)
);
$wp_customize->add_setting(
'mobile_header_color',
array(
'default' => '#212121',
'sanitize_callback' => 'botiga_sanitize_hex_rgba',
'transport' => 'postMessage'
)
);
$wp_customize->add_control(
new Botiga_Alpha_Color(
$wp_customize,
'mobile_header_color',
array(
'label' => esc_html__( 'Text color', 'botiga' ),
'section' => 'botiga_section_mobile_header',
)
)
);
$wp_customize->add_setting( 'mobile_header_padding', array(
'default' => 15,
'sanitize_callback' => 'absint',
'transport' => 'postMessage'
) );
$wp_customize->add_control( new Botiga_Responsive_Slider( $wp_customize, 'mobile_header_padding',
array(
'label' => esc_html__( 'Top&bottom padding', 'botiga' ),
'section' => 'botiga_section_mobile_header',
'is_responsive' => 0,
'settings' => array (
'size_desktop' => 'mobile_header_padding',
),
'input_attrs' => array (
'min' => 0,
'max' => 50,
'step' => 1
),
)
) );
$wp_customize->add_setting( 'mobile_header_divider_3',
array(
'sanitize_callback' => 'esc_attr'
)
);
$wp_customize->add_control( new Botiga_Divider_Control( $wp_customize, 'mobile_header_divider_3',
array(
'section' => 'botiga_section_mobile_header',
)
)
);
$wp_customize->add_setting( 'mobile_header_offcanvas_title',
array(
'default' => '',
'sanitize_callback' => 'esc_attr'
)
);
$wp_customize->add_control( new Botiga_Text_Control( $wp_customize, 'mobile_header_offcanvas_title',
array(
'label' => esc_html__( 'Offcanvas menu', 'botiga' ),
'section' => 'botiga_section_mobile_header',
)
)
);
$wp_customize->add_setting(
'offcanvas_menu_background',
array(
'default' => '#fff',
'sanitize_callback' => 'botiga_sanitize_hex_rgba',
'transport' => 'postMessage'
)
);
$wp_customize->add_control(
new Botiga_Alpha_Color(
$wp_customize,
'offcanvas_menu_background',
array(
'label' => esc_html__( 'Background color', 'botiga' ),
'section' => 'botiga_section_mobile_header',
)
)
);
$wp_customize->add_setting(
'offcanvas_menu_color',
array(
'default' => '#212121',
'sanitize_callback' => 'botiga_sanitize_hex_rgba',
'transport' => 'postMessage'
)
);
$wp_customize->add_control(
new Botiga_Alpha_Color(
$wp_customize,
'offcanvas_menu_color',
array(
'label' => esc_html__( 'Color', 'botiga' ),
'section' => 'botiga_section_mobile_header',
)
)
);
$wp_customize->add_setting( 'mobile_header_divider_4',
array(
'sanitize_callback' => 'esc_attr'
)
);
$wp_customize->add_control( new Botiga_Divider_Control( $wp_customize, 'mobile_header_divider_4',
array(
'section' => 'botiga_section_mobile_header',
)
)
);
$wp_customize->add_setting( 'mobile_header_separator_title',
array(
'default' => '',
'sanitize_callback' => 'esc_attr'
)
);
$wp_customize->add_control( new Botiga_Text_Control( $wp_customize, 'mobile_header_separator_title',
array(
'label' => esc_html__( 'Link separator', 'botiga' ),
'section' => 'botiga_section_mobile_header',
)
)
);
$wp_customize->add_setting( 'mobile_header_separator_width', array(
'default' => 1,
'sanitize_callback' => 'absint',
'transport' => 'postMessage'
) );
$wp_customize->add_control( new Botiga_Responsive_Slider( $wp_customize, 'mobile_header_separator_width',
array(
'label' => esc_html__( 'Separator size', 'botiga' ),
'section' => 'botiga_section_mobile_header',
'is_responsive' => 0,
'settings' => array (
'size_desktop' => 'mobile_header_separator_width',
),
'input_attrs' => array (
'min' => 0,
'max' => 50,
'step' => 1
),
)
) );
$wp_customize->add_setting(
'link_separator_color',
array(
'default' => '#eee',
'sanitize_callback' => 'botiga_sanitize_hex_rgba',
'transport' => 'postMessage'
)
);
$wp_customize->add_control(
new Botiga_Alpha_Color(
$wp_customize,
'link_separator_color',
array(
'label' => esc_html__( 'Separator color', 'botiga' ),
'section' => 'botiga_section_mobile_header',
)
)
);