417 lines
12 KiB
PHP
417 lines
12 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Header Builder Options
|
||
|
*
|
||
|
* @package Kadence
|
||
|
*/
|
||
|
|
||
|
namespace Kadence;
|
||
|
|
||
|
use Kadence\Theme_Customizer;
|
||
|
use function Kadence\kadence;
|
||
|
|
||
|
ob_start(); ?>
|
||
|
<div class="kadence-compontent-tabs nav-tab-wrapper wp-clearfix">
|
||
|
<a href="#" class="nav-tab kadence-general-tab kadence-compontent-tabs-button nav-tab-active" data-tab="general">
|
||
|
<span><?php esc_html_e( 'General', 'kadence' ); ?></span>
|
||
|
</a>
|
||
|
<a href="#" class="nav-tab kadence-design-tab kadence-compontent-tabs-button" data-tab="design">
|
||
|
<span><?php esc_html_e( 'Design', 'kadence' ); ?></span>
|
||
|
</a>
|
||
|
</div>
|
||
|
<?php
|
||
|
$compontent_tabs = ob_get_clean();
|
||
|
$settings = array(
|
||
|
'secondary_navigation_tabs' => array(
|
||
|
'control_type' => 'kadence_blank_control',
|
||
|
'section' => 'secondary_navigation',
|
||
|
'settings' => false,
|
||
|
'priority' => 1,
|
||
|
'description' => $compontent_tabs,
|
||
|
),
|
||
|
'secondary_navigation_link' => array(
|
||
|
'control_type' => 'kadence_focus_button_control',
|
||
|
'section' => 'secondary_navigation',
|
||
|
'settings' => false,
|
||
|
'priority' => 5,
|
||
|
'label' => esc_html__( 'Select Menu', 'kadence' ),
|
||
|
'context' => array(
|
||
|
array(
|
||
|
'setting' => '__current_tab',
|
||
|
'value' => 'general',
|
||
|
),
|
||
|
),
|
||
|
'input_attrs' => array(
|
||
|
'section' => 'menu_locations',
|
||
|
),
|
||
|
),
|
||
|
'secondary_navigation_spacing' => array(
|
||
|
'control_type' => 'kadence_range_control',
|
||
|
'section' => 'secondary_navigation',
|
||
|
'priority' => 5,
|
||
|
'label' => esc_html__( 'Items Spacing', 'kadence' ),
|
||
|
'context' => array(
|
||
|
array(
|
||
|
'setting' => '__current_tab',
|
||
|
'value' => 'general',
|
||
|
),
|
||
|
),
|
||
|
'live_method' => array(
|
||
|
array(
|
||
|
'type' => 'css',
|
||
|
'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item > a',
|
||
|
'property' => 'padding-left',
|
||
|
'pattern' => 'calc($ / 2)',
|
||
|
'key' => 'size',
|
||
|
),
|
||
|
array(
|
||
|
'type' => 'css',
|
||
|
'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item > a',
|
||
|
'property' => 'padding-right',
|
||
|
'pattern' => 'calc($ / 2)',
|
||
|
'key' => 'size',
|
||
|
),
|
||
|
),
|
||
|
'default' => kadence()->default( 'secondary_navigation_spacing' ),
|
||
|
'input_attrs' => array(
|
||
|
'min' => array(
|
||
|
'px' => 0,
|
||
|
'em' => 0,
|
||
|
'rem' => 0,
|
||
|
'vw' => 0,
|
||
|
),
|
||
|
'max' => array(
|
||
|
'px' => 100,
|
||
|
'em' => 12,
|
||
|
'rem' => 12,
|
||
|
'vw' => 12,
|
||
|
),
|
||
|
'step' => array(
|
||
|
'px' => 1,
|
||
|
'em' => 0.01,
|
||
|
'rem' => 0.01,
|
||
|
'vw' => 0.01,
|
||
|
),
|
||
|
'units' => array( 'px', 'em', 'rem', 'vw' ),
|
||
|
'responsive' => false,
|
||
|
),
|
||
|
),
|
||
|
'secondary_navigation_stretch' => array(
|
||
|
'control_type' => 'kadence_switch_control',
|
||
|
'sanitize' => 'kadence_sanitize_toggle',
|
||
|
'section' => 'secondary_navigation',
|
||
|
'priority' => 6,
|
||
|
'default' => kadence()->default( 'secondary_navigation_stretch' ),
|
||
|
'label' => esc_html__( 'Stretch Menu?', 'kadence' ),
|
||
|
'context' => array(
|
||
|
array(
|
||
|
'setting' => '__current_tab',
|
||
|
'value' => 'general',
|
||
|
),
|
||
|
),
|
||
|
'live_method' => array(
|
||
|
array(
|
||
|
'type' => 'class',
|
||
|
'selector' => '.site-header-item-secondary-navigation',
|
||
|
'pattern' => 'header-navigation-layout-stretch-$',
|
||
|
'key' => 'switch',
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
'secondary_navigation_fill_stretch' => array(
|
||
|
'control_type' => 'kadence_switch_control',
|
||
|
'sanitize' => 'kadence_sanitize_toggle',
|
||
|
'section' => 'secondary_navigation',
|
||
|
'priority' => 6,
|
||
|
'default' => kadence()->default( 'secondary_navigation_fill_stretch' ),
|
||
|
'label' => esc_html__( 'Fill and Center Menu Items?', 'kadence' ),
|
||
|
'context' => array(
|
||
|
array(
|
||
|
'setting' => '__current_tab',
|
||
|
'value' => 'general',
|
||
|
),
|
||
|
array(
|
||
|
'setting' => 'secondary_navigation_stretch',
|
||
|
'operator' => '==',
|
||
|
'value' => true,
|
||
|
),
|
||
|
),
|
||
|
'live_method' => array(
|
||
|
array(
|
||
|
'type' => 'class',
|
||
|
'selector' => '.site-header-item-secondary-navigation',
|
||
|
'pattern' => 'header-navigation-layout-fill-stretch-$',
|
||
|
'key' => 'switch',
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
'secondary_navigation_style' => array(
|
||
|
'control_type' => 'kadence_radio_icon_control',
|
||
|
'section' => 'secondary_navigation',
|
||
|
'priority' => 10,
|
||
|
'default' => kadence()->default( 'secondary_navigation_style' ),
|
||
|
'label' => esc_html__( 'Navigation Style', 'kadence' ),
|
||
|
'context' => array(
|
||
|
array(
|
||
|
'setting' => '__current_tab',
|
||
|
'value' => 'design',
|
||
|
),
|
||
|
),
|
||
|
'live_method' => array(
|
||
|
array(
|
||
|
'type' => 'class',
|
||
|
'selector' => '.secondary-navigation',
|
||
|
'pattern' => 'header-navigation-style-$',
|
||
|
'key' => '',
|
||
|
),
|
||
|
),
|
||
|
'input_attrs' => array(
|
||
|
'layout' => array(
|
||
|
'standard' => array(
|
||
|
'tooltip' => __( 'Standard', 'kadence' ),
|
||
|
'name' => __( 'Standard', 'kadence' ),
|
||
|
'icon' => '',
|
||
|
),
|
||
|
'fullheight' => array(
|
||
|
'tooltip' => __( 'Menu items are full height', 'kadence' ),
|
||
|
'name' => __( 'Full Height', 'kadence' ),
|
||
|
'icon' => '',
|
||
|
),
|
||
|
'underline' => array(
|
||
|
'tooltip' => __( 'Underline Hover/Active', 'kadence' ),
|
||
|
'name' => __( 'Underline', 'kadence' ),
|
||
|
'icon' => '',
|
||
|
),
|
||
|
'underline-fullheight' => array(
|
||
|
'tooltip' => __( 'Full Height Underline Hover/Active', 'kadence' ),
|
||
|
'name' => __( 'Full Height Underline', 'kadence' ),
|
||
|
'icon' => '',
|
||
|
),
|
||
|
),
|
||
|
'responsive' => false,
|
||
|
'class' => 'radio-btn-width-50',
|
||
|
),
|
||
|
),
|
||
|
'secondary_navigation_vertical_spacing' => array(
|
||
|
'control_type' => 'kadence_range_control',
|
||
|
'section' => 'secondary_navigation',
|
||
|
'label' => esc_html__( 'Items Top and Bottom Padding', 'kadence' ),
|
||
|
'context' => array(
|
||
|
array(
|
||
|
'setting' => '__current_tab',
|
||
|
'value' => 'design',
|
||
|
),
|
||
|
array(
|
||
|
'setting' => 'secondary_navigation_style',
|
||
|
'operator' => 'sub_object_does_not_contain',
|
||
|
'sub_key' => 'layout',
|
||
|
'responsive' => false,
|
||
|
'value' => 'fullheight',
|
||
|
),
|
||
|
),
|
||
|
'live_method' => array(
|
||
|
array(
|
||
|
'type' => 'css',
|
||
|
'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item > a',
|
||
|
'property' => 'padding-top',
|
||
|
'pattern' => '$',
|
||
|
'key' => 'size',
|
||
|
),
|
||
|
array(
|
||
|
'type' => 'css',
|
||
|
'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item > a',
|
||
|
'property' => 'padding-bottom',
|
||
|
'pattern' => '$',
|
||
|
'key' => 'size',
|
||
|
),
|
||
|
),
|
||
|
'default' => kadence()->default( 'secondary_navigation_vertical_spacing' ),
|
||
|
'input_attrs' => array(
|
||
|
'min' => array(
|
||
|
'px' => 0,
|
||
|
'em' => 0,
|
||
|
'rem' => 0,
|
||
|
'vh' => 0,
|
||
|
),
|
||
|
'max' => array(
|
||
|
'px' => 100,
|
||
|
'em' => 12,
|
||
|
'rem' => 12,
|
||
|
'vh' => 12,
|
||
|
),
|
||
|
'step' => array(
|
||
|
'px' => 1,
|
||
|
'em' => 0.01,
|
||
|
'rem' => 0.01,
|
||
|
'vh' => 0.01,
|
||
|
),
|
||
|
'units' => array( 'px', 'em', 'rem', 'vh' ),
|
||
|
'responsive' => false,
|
||
|
),
|
||
|
),
|
||
|
'secondary_navigation_color' => array(
|
||
|
'control_type' => 'kadence_color_control',
|
||
|
'section' => 'secondary_navigation',
|
||
|
'label' => esc_html__( 'Navigation Colors', 'kadence' ),
|
||
|
'default' => kadence()->default( 'secondary_navigation_color' ),
|
||
|
'live_method' => array(
|
||
|
array(
|
||
|
'type' => 'css',
|
||
|
'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item > a',
|
||
|
'property' => 'color',
|
||
|
'pattern' => '$',
|
||
|
'key' => 'color',
|
||
|
),
|
||
|
array(
|
||
|
'type' => 'css',
|
||
|
'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item > a:hover',
|
||
|
'property' => 'color',
|
||
|
'pattern' => '$',
|
||
|
'key' => 'hover',
|
||
|
),
|
||
|
array(
|
||
|
'type' => 'css',
|
||
|
'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item.current-menu-item > a, .secondary-navigation .secondary-menu-container > ul > li.current_page_item > a',
|
||
|
'property' => 'color',
|
||
|
'pattern' => '$',
|
||
|
'key' => 'active',
|
||
|
),
|
||
|
),
|
||
|
'context' => array(
|
||
|
array(
|
||
|
'setting' => '__current_tab',
|
||
|
'value' => 'design',
|
||
|
),
|
||
|
),
|
||
|
'input_attrs' => array(
|
||
|
'colors' => array(
|
||
|
'color' => array(
|
||
|
'tooltip' => __( 'Initial Color', 'kadence' ),
|
||
|
'palette' => true,
|
||
|
),
|
||
|
'hover' => array(
|
||
|
'tooltip' => __( 'Hover Color', 'kadence' ),
|
||
|
'palette' => true,
|
||
|
),
|
||
|
'active' => array(
|
||
|
'tooltip' => __( 'Active Color', 'kadence' ),
|
||
|
'palette' => true,
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
'secondary_navigation_background' => array(
|
||
|
'control_type' => 'kadence_color_control',
|
||
|
'section' => 'secondary_navigation',
|
||
|
'label' => esc_html__( 'Navigation Background', 'kadence' ),
|
||
|
'default' => kadence()->default( 'secondary_navigation_background' ),
|
||
|
'live_method' => array(
|
||
|
array(
|
||
|
'type' => 'css',
|
||
|
'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item > a',
|
||
|
'property' => 'background',
|
||
|
'pattern' => '$',
|
||
|
'key' => 'color',
|
||
|
),
|
||
|
array(
|
||
|
'type' => 'css',
|
||
|
'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item > a:hover',
|
||
|
'property' => 'background',
|
||
|
'pattern' => '$',
|
||
|
'key' => 'hover',
|
||
|
),
|
||
|
array(
|
||
|
'type' => 'css',
|
||
|
'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item.current-menu-item > a, .secondary-navigation .secondary-menu-container > ul > li.current_page_item > a',
|
||
|
'property' => 'background',
|
||
|
'pattern' => '$',
|
||
|
'key' => 'active',
|
||
|
),
|
||
|
),
|
||
|
'context' => array(
|
||
|
array(
|
||
|
'setting' => '__current_tab',
|
||
|
'value' => 'design',
|
||
|
),
|
||
|
),
|
||
|
'input_attrs' => array(
|
||
|
'colors' => array(
|
||
|
'color' => array(
|
||
|
'tooltip' => __( 'Initial Background', 'kadence' ),
|
||
|
'palette' => true,
|
||
|
),
|
||
|
'hover' => array(
|
||
|
'tooltip' => __( 'Hover Background', 'kadence' ),
|
||
|
'palette' => true,
|
||
|
),
|
||
|
'active' => array(
|
||
|
'tooltip' => __( 'Active Background', 'kadence' ),
|
||
|
'palette' => true,
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
'secondary_navigation_parent_active' => array(
|
||
|
'control_type' => 'kadence_switch_control',
|
||
|
'sanitize' => 'kadence_sanitize_toggle',
|
||
|
'section' => 'secondary_navigation',
|
||
|
'default' => kadence()->default( 'secondary_navigation_parent_active' ),
|
||
|
'label' => esc_html__( 'Make Parent of Current Menu Item Active?', 'kadence' ),
|
||
|
'context' => array(
|
||
|
array(
|
||
|
'setting' => '__current_tab',
|
||
|
'value' => 'design',
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
'secondary_navigation_typography' => array(
|
||
|
'control_type' => 'kadence_typography_control',
|
||
|
'section' => 'secondary_navigation',
|
||
|
'label' => esc_html__( 'Navigation Font', 'kadence' ),
|
||
|
'context' => array(
|
||
|
array(
|
||
|
'setting' => '__current_tab',
|
||
|
'value' => 'design',
|
||
|
),
|
||
|
),
|
||
|
'default' => kadence()->default( 'secondary_navigation_typography' ),
|
||
|
'live_method' => array(
|
||
|
array(
|
||
|
'type' => 'css_typography',
|
||
|
'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item a',
|
||
|
'pattern' => array(
|
||
|
'desktop' => '$',
|
||
|
'tablet' => '$',
|
||
|
'mobile' => '$',
|
||
|
),
|
||
|
'property' => 'font',
|
||
|
'key' => 'typography',
|
||
|
),
|
||
|
),
|
||
|
'input_attrs' => array(
|
||
|
'id' => 'secondary_navigation_typography',
|
||
|
'options' => 'no-color',
|
||
|
),
|
||
|
),
|
||
|
'info_secondary_submenu' => array(
|
||
|
'control_type' => 'kadence_title_control',
|
||
|
'section' => 'secondary_navigation',
|
||
|
'priority' => 20,
|
||
|
'label' => esc_html__( 'Dropdown Options', 'kadence' ),
|
||
|
'settings' => false,
|
||
|
),
|
||
|
'secondary_dropdown_link' => array(
|
||
|
'control_type' => 'kadence_focus_button_control',
|
||
|
'section' => 'secondary_navigation',
|
||
|
'settings' => false,
|
||
|
'priority' => 20,
|
||
|
'label' => esc_html__( 'Dropdown Options', 'kadence' ),
|
||
|
'input_attrs' => array(
|
||
|
'section' => 'kadence_customizer_dropdown_navigation',
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
|
||
|
Theme_Customizer::add_settings( $settings );
|
||
|
|