<?php

/* 
 * anirohotellight Theme Customizer - Panel "Header Options"
 *
 * @package anirohotellight
 */

//******************************************************************************       
// Header options
//****************************************************************************** 

$wp_customize->add_section( 'anirohotellight-header-title-position-section' , array(
    'title' => esc_html__( 'Site header', 'aniro-hotel-light' ),
      'priority'    => 30,
    'description' => esc_html__( 'Site header options.', 'aniro-hotel-light' )
) );     

        //text for button        
	$wp_customize->add_setting('anirohotellight_header_button_text', array(
			'default'            => 'Book now',
			'sanitize_callback'  => 'wp_filter_nohtml_kses'
		)
	);
	$wp_customize->add_control('anirohotellight_header_button_text', array(
			'section'  => 'anirohotellight-header-title-position-section',
                        'label'    =>esc_html__( 'Text for button in header:', 'aniro-hotel-light' ),
			'type'     => 'text'
		)
	);   
//Button link
	$wp_customize->add_setting('anirohotellight_header_button_link', array(
			'default'            => '',
			'sanitize_callback'  => 'esc_url_raw'
		)
	);
	$wp_customize->add_control('anirohotellight_header_button_link', array(
			'section'  => 'anirohotellight-header-title-position-section',
			'label'    => 'Link for button in header',
			'type'     => 'url'
		)
	);        
/*******************************************************************************************/        
     // Show/hide address and telephone number
            $wp_customize->add_setting('anirohotellight_top_options_hide_data', array(
                 'default'    =>  '',
                 'sanitize_callback'  => 'anirohotellight_sanitize_checkbox',
            ));

            $wp_customize->add_control('anirohotellight_top_options_hide_data', array(
                    'type' => 'checkbox',
                    'label' => esc_html__( 'Hide hotel address and telephone number?', 'aniro-hotel-light' ),
                    'section' => 'anirohotellight-header-title-position-section',
                )
            );   