HEADER TOP ==========================================*/ if ( ! class_exists( 'Zakra_Customize_Header_Top_Option' ) ) : /** * Header top customizer options. */ class Zakra_Customize_Header_Top_Option extends Zakra_Customize_Base_Option { /** * Arguments for options. * * @return array */ public function elements() { return array( /** * Option: Enable top header. */ 'zakra_header_top_enabled' => array( 'setting' => array( 'default' => false, 'sanitize_callback' => array( 'Zakra_Customizer_Sanitize', 'sanitize_checkbox' ), ), 'control' => array( 'label' => esc_html__( 'Enable Header Top Bar', 'zakra' ), 'section' => 'zakra_header_top', 'type' => 'toggle', 'priority' => 10, ), ), /* ============================== Left Content ============================== */ /** * Option: Left content. */ 'zakra_header_top_left_content' => array( 'setting' => array( 'default' => 'text_html', 'sanitize_callback' => 'wp_kses_post', ), 'control' => array( 'type' => 'select', 'priority' => 20, 'is_default_type' => true, 'label' => esc_html__( 'Left Content', 'zakra' ), 'section' => 'zakra_header_top', 'choices' => array( 'none' => esc_html__( 'None', 'zakra' ), 'text_html' => esc_html__( 'Text/HTML', 'zakra' ), 'menu' => esc_html__( 'Menu', 'zakra' ), 'widget' => esc_html__( 'Widget', 'zakra' ), ), 'active_callback' => array( array( 'setting' => 'zakra_header_top_enabled', 'operator' => '==', 'value' => true, ), ), ), ), /** * Option: Left content > Text/HTML for Left Content. */ 'zakra_header_top_left_content_html' => array( 'setting' => array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', ), 'control' => array( 'type' => 'editor', 'priority' => 30, 'label' => esc_html__( 'Text/HTML for Left Content', 'zakra' ), 'section' => 'zakra_header_top', 'active_callback' => array( array( 'setting' => 'zakra_header_top_enabled', 'operator' => '==', 'value' => true, ), array( 'setting' => 'zakra_header_top_left_content', 'operator' => '==', 'value' => 'text_html', ), ), ), ), /** * Option: Left content > Menu content. */ 'zakra_header_top_left_content_menu' => array( 'setting' => array( 'default' => 'none', ), 'control' => array( 'type' => 'select', 'priority' => 40, 'is_default_type' => true, 'label' => esc_html__( 'Select a Menu for Left Content', 'zakra' ), 'section' => 'zakra_header_top', 'choices' => $this->get_menu_options(), 'active_callback' => array( array( 'setting' => 'zakra_header_top_enabled', 'operator' => '==', 'value' => true, ), array( 'setting' => 'zakra_header_top_left_content', 'operator' => '==', 'value' => 'menu', ), ), ), ), /* ============================== Right Content ============================== */ /** * Option: Right content. */ 'zakra_header_top_right_content' => array( 'setting' => array( 'default' => 'menu', ), 'control' => array( 'type' => 'select', 'priority' => 50, 'is_default_type' => true, 'label' => esc_html__( 'Right Content', 'zakra' ), 'section' => 'zakra_header_top', 'choices' => array( 'none' => esc_html__( 'None', 'zakra' ), 'text_html' => esc_html__( 'Text/HTML', 'zakra' ), 'menu' => esc_html__( 'Menu', 'zakra' ), 'widget' => esc_html__( 'Widget', 'zakra' ), ), 'active_callback' => array( array( 'setting' => 'zakra_header_top_enabled', 'operator' => '==', 'value' => true, ), ), ), ), /** * Option: Right content > Text/HTML for Right Content. */ 'zakra_header_top_right_content_html' => array( 'setting' => array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', ), 'control' => array( 'type' => 'editor', 'priority' => 60, 'label' => esc_html__( 'Text/HTML for Right Content', 'zakra' ), 'section' => 'zakra_header_top', 'active_callback' => array( array( 'setting' => 'zakra_header_top_enabled', 'operator' => '==', 'value' => true, ), array( 'setting' => 'zakra_header_top_right_content', 'operator' => '==', 'value' => 'text_html', ), ), ), ), /** * Option: Right content > Menu content. */ 'zakra_header_top_right_content_menu' => array( 'setting' => array( 'default' => 'none', ), 'control' => array( 'type' => 'select', 'priority' => 70, 'is_default_type' => true, 'label' => esc_html__( 'Select a Menu for Right Content', 'zakra' ), 'section' => 'zakra_header_top', 'choices' => $this->get_menu_options(), 'active_callback' => array( array( 'setting' => 'zakra_header_top_enabled', 'operator' => '==', 'value' => true, ), array( 'setting' => 'zakra_header_top_right_content', 'operator' => '==', 'value' => 'menu', ), ), ), ), /** * Option: Header top text color */ 'zakra_header_top_text_color' => array( 'output' => array( array( 'selector' => '.tg-site-header .tg-site-header-top', 'property' => 'color', ), ), 'setting' => array( 'default' => '#51585f', 'sanitize_callback' => array( 'Zakra_Customizer_Sanitize', 'sanitize_alpha_color' ), ), 'control' => array( 'type' => 'color', 'priority' => 80, 'label' => esc_html__( 'Header Top Text Color', 'zakra' ), 'section' => 'zakra_header_top', 'choices' => array( 'alpha' => true, ), 'active_callback' => array( array( 'setting' => 'zakra_header_top_enabled', 'operator' => '===', 'value' => true, ), ), ), ), /** * Option: Background. */ 'zakra_header_top_bg' => array( 'output' => array( array( 'selector' => '.tg-site-header .tg-site-header-top', ), ), 'setting' => array( 'default' => array( 'background-color' => '#e9ecef', 'background-image' => '', 'background-repeat' => 'repeat', 'background-position' => 'center center', 'background-size' => 'contain', 'background-attachment' => 'scroll', ), 'sanitize_callback' => array( 'Zakra_Customizer_Sanitize', 'sanitize_background' ), ), 'control' => array( 'type' => 'background', 'priority' => 90, 'label' => esc_html__( 'Background', 'zakra' ), 'section' => 'zakra_header_top', 'active_callback' => array( array( 'setting' => 'zakra_header_top_enabled', 'operator' => '==', 'value' => true, ), ), ), ), ); } } new Zakra_Customize_Header_Top_Option(); endif;