2020-04-07 13:03:04 +00:00
< ? php
// No direct access, please
if ( ! defined ( 'ABSPATH' ) ) {
exit ;
}
if ( ! function_exists ( 'generate_menu_plus_setup' ) ) {
add_action ( 'after_setup_theme' , 'generate_menu_plus_setup' , 50 );
/**
* Register the slide - out menu
*/
function generate_menu_plus_setup () {
register_nav_menus ( array (
'slideout' => __ ( 'Off Canvas Menu' , 'gp-premium' ),
) );
}
}
if ( ! function_exists ( 'generate_menu_plus_get_defaults' ) ) {
/**
* Set default options
*/
function generate_menu_plus_get_defaults () {
return apply_filters ( 'generate_menu_plus_option_defaults' , array (
'mobile_menu_label' => __ ( 'Menu' , 'gp-premium' ),
'sticky_menu' => 'false' ,
'sticky_menu_effect' => 'fade' ,
'sticky_menu_logo' => '' , // Deprecated since 1.8.
'sticky_menu_logo_position' => 'sticky-menu' , // Deprecated since 1.8.
'mobile_header' => 'disable' ,
'mobile_menu_breakpoint' => '768' ,
'mobile_header_logo' => '' ,
'mobile_header_sticky' => 'disable' ,
'mobile_header_branding' => 'logo' ,
'slideout_menu' => 'false' ,
'off_canvas_desktop_toggle_label' => '' ,
'slideout_menu_side' => 'left' ,
'slideout_menu_style' => 'slide' ,
'slideout_close_button' => 'outside' ,
'auto_hide_sticky' => false ,
'mobile_header_auto_hide_sticky' => false ,
'sticky_navigation_logo' => '' ,
'navigation_as_header' => false ,
) );
}
}
add_filter ( 'generate_color_option_defaults' , 'generate_menu_plus_color_defaults' );
/**
* Set the Menu Plus color defaults
*
* @ since 1.6
*/
function generate_menu_plus_color_defaults ( $defaults ) {
$defaults [ 'slideout_background_color' ] = '' ;
$defaults [ 'slideout_text_color' ] = '' ;
$defaults [ 'slideout_background_hover_color' ] = '' ;
$defaults [ 'slideout_text_hover_color' ] = '' ;
$defaults [ 'slideout_background_current_color' ] = '' ;
$defaults [ 'slideout_text_current_color' ] = '' ;
$defaults [ 'slideout_submenu_background_color' ] = '' ;
$defaults [ 'slideout_submenu_text_color' ] = '' ;
$defaults [ 'slideout_submenu_background_hover_color' ] = '' ;
$defaults [ 'slideout_submenu_text_hover_color' ] = '' ;
$defaults [ 'slideout_submenu_background_current_color' ] = '' ;
$defaults [ 'slideout_submenu_text_current_color' ] = '' ;
return $defaults ;
}
add_filter ( 'generate_font_option_defaults' , 'generate_menu_plus_typography_defaults' );
/**
* Set the Menu Plus typography option defaults .
*
* @ since 1.6
*/
function generate_menu_plus_typography_defaults ( $defaults ) {
$defaults [ 'slideout_font_weight' ] = 'normal' ;
$defaults [ 'slideout_font_transform' ] = 'none' ;
$defaults [ 'slideout_font_size' ] = '' ;
$defaults [ 'slideout_mobile_font_size' ] = '' ;
return $defaults ;
}
if ( ! function_exists ( 'generate_menu_plus_customize_register' ) ) {
add_action ( 'customize_register' , 'generate_menu_plus_customize_register' , 100 );
/**
* Initiate Customizer controls
*/
function generate_menu_plus_customize_register ( $wp_customize ) {
// Get our defaults
$defaults = generate_menu_plus_get_defaults ();
$settings = wp_parse_args (
get_option ( 'generate_menu_plus_settings' , array () ),
generate_menu_plus_get_defaults ()
);
// Get our Customizer helpers
require_once GP_LIBRARY_DIRECTORY . 'customizer-helpers.php' ;
if ( method_exists ( $wp_customize , 'register_control_type' ) ) {
$wp_customize -> register_control_type ( 'GeneratePress_Action_Button_Control' );
$wp_customize -> register_control_type ( 'GeneratePress_Section_Shortcut_Control' );
$wp_customize -> register_control_type ( 'GeneratePress_Pro_Range_Slider_Control' );
$wp_customize -> register_control_type ( 'GeneratePress_Information_Customize_Control' );
}
// Add our old Menu Plus panel
// This panel shouldn't display anymore but is left for back compat
if ( class_exists ( 'WP_Customize_Panel' ) ) {
if ( ! $wp_customize -> get_panel ( 'generate_menu_plus' ) ) {
$wp_customize -> add_panel ( 'generate_menu_plus' , array (
'priority' => 50 ,
'capability' => 'edit_theme_options' ,
'theme_supports' => '' ,
'title' => esc_html__ ( 'Menu Plus' , 'gp-premium' ),
'description' => '' ,
) );
}
}
// Add our options to the Layout panel if it exists
// The layout panel is in the free theme, so we have the fallback in case people haven't updated
if ( $wp_customize -> get_panel ( 'generate_layout_panel' ) ) {
$panel = 'generate_layout_panel' ;
$navigation_section = 'generate_layout_navigation' ;
$header_section = 'generate_layout_header' ;
$sticky_menu_section = 'generate_layout_navigation' ;
} else {
$panel = 'generate_menu_plus' ;
$navigation_section = 'menu_plus_section' ;
$header_section = 'menu_plus_mobile_header' ;
$sticky_menu_section = 'menu_plus_sticky_menu' ;
}
// Add Menu Plus section
// This section shouldn't display anymore for the above reasons
$wp_customize -> add_section (
'menu_plus_section' ,
array (
'title' => esc_html__ ( 'General Settings' , 'gp-premium' ),
'capability' => 'edit_theme_options' ,
'panel' => 'generate_menu_plus'
)
);
// Mobile menu label
$wp_customize -> add_setting (
'generate_menu_plus_settings[mobile_menu_label]' ,
array (
'default' => $defaults [ 'mobile_menu_label' ],
'type' => 'option' ,
'sanitize_callback' => 'wp_kses_post'
)
);
$wp_customize -> add_control (
'mobile_menu_label_control' , array (
'label' => esc_html__ ( 'Mobile Menu Label' , 'gp-premium' ),
'section' => $navigation_section ,
'settings' => 'generate_menu_plus_settings[mobile_menu_label]'
)
);
$wp_customize -> add_setting (
'generate_menu_plus_settings[mobile_menu_breakpoint]' ,
array (
'default' => $defaults [ 'mobile_menu_breakpoint' ],
'type' => 'option' ,
'sanitize_callback' => 'absint' ,
)
);
if ( defined ( 'GENERATE_VERSION' ) && version_compare ( GENERATE_VERSION , '2.3-alpha.1' , '>=' ) ) {
$wp_customize -> add_control (
new GeneratePress_Pro_Range_Slider_Control (
$wp_customize ,
'generate_menu_plus_settings[mobile_menu_breakpoint]' ,
array (
'label' => esc_html__ ( 'Mobile Menu Breakpoint' , 'gp-premium' ),
'section' => $navigation_section ,
'settings' => array (
'desktop' => 'generate_menu_plus_settings[mobile_menu_breakpoint]' ,
),
'choices' => array (
'desktop' => array (
'min' => 0 ,
'max' => 2000 ,
'step' => 5 ,
'edit' => true ,
'unit' => 'px' ,
),
),
)
)
);
}
// Sticky menu section
$wp_customize -> add_section (
'menu_plus_sticky_menu' ,
array (
'title' => esc_html__ ( 'Sticky Navigation' , 'gp-premium' ),
'capability' => 'edit_theme_options' ,
'panel' => $panel ,
'priority' => 33
)
);
// Sticky menu
$wp_customize -> add_setting (
'generate_menu_plus_settings[sticky_menu]' ,
array (
'default' => $defaults [ 'sticky_menu' ],
'type' => 'option' ,
'sanitize_callback' => 'generate_premium_sanitize_choices'
)
);
$wp_customize -> add_control (
'generate_menu_plus_settings[sticky_menu]' ,
array (
'type' => 'select' ,
'label' => esc_html__ ( 'Sticky Navigation' , 'gp-premium' ),
'section' => 'menu_plus_sticky_menu' ,
'choices' => array (
'mobile' => esc_html__ ( 'Mobile only' , 'gp-premium' ),
'desktop' => esc_html__ ( 'Desktop only' , 'gp-premium' ),
'true' => esc_html__ ( 'On' , 'gp-premium' ),
'false' => esc_html__ ( 'Off' , 'gp-premium' )
),
'settings' => 'generate_menu_plus_settings[sticky_menu]' ,
'priority' => 105
)
);
// Transition
$wp_customize -> add_setting (
'generate_menu_plus_settings[sticky_menu_effect]' ,
array (
'default' => $defaults [ 'sticky_menu_effect' ],
'type' => 'option' ,
'sanitize_callback' => 'generate_premium_sanitize_choices'
)
);
$wp_customize -> add_control (
'generate_menu_plus_settings[sticky_menu_effect]' ,
array (
'type' => 'select' ,
'label' => esc_html__ ( 'Transition' , 'gp-premium' ),
'section' => 'menu_plus_sticky_menu' ,
'choices' => array (
'fade' => esc_html__ ( 'Fade' , 'gp-premium' ),
'slide' => esc_html__ ( 'Slide' , 'gp-premium' ),
'none' => esc_html__ ( 'None' , 'gp-premium' )
),
'settings' => 'generate_menu_plus_settings[sticky_menu_effect]' ,
'active_callback' => 'generate_sticky_navigation_activated' ,
'priority' => 110
)
);
// Auto hide on scroll down
$wp_customize -> add_setting (
'generate_menu_plus_settings[auto_hide_sticky]' ,
array (
'default' => $defaults [ 'auto_hide_sticky' ],
'type' => 'option' ,
'sanitize_callback' => 'generate_premium_sanitize_checkbox'
)
);
$wp_customize -> add_control (
'generate_menu_plus_settings[auto_hide_sticky]' ,
array (
'type' => 'checkbox' ,
'label' => esc_html__ ( 'Hide when scrolling down' , 'gp-premium' ),
'section' => 'menu_plus_sticky_menu' ,
'settings' => 'generate_menu_plus_settings[auto_hide_sticky]' ,
'priority' => 120 ,
'active_callback' => 'generate_sticky_navigation_activated' ,
)
);
if ( '' == $settings [ 'sticky_menu_logo' ] ) {
// Navigation logo
$wp_customize -> add_setting (
'generate_menu_plus_settings[sticky_navigation_logo]' ,
array (
'default' => $defaults [ 'sticky_navigation_logo' ],
'type' => 'option' ,
'sanitize_callback' => 'esc_url_raw'
)
);
$wp_customize -> add_control (
new WP_Customize_Image_Control (
$wp_customize ,
'generate_menu_plus_settings[sticky_navigation_logo]' ,
array (
'label' => esc_html__ ( 'Sticky Navigation Logo' , 'gp-premium' ),
'section' => 'menu_plus_sticky_menu' ,
'settings' => 'generate_menu_plus_settings[sticky_navigation_logo]' ,
'priority' => 125 ,
'active_callback' => 'generate_sticky_navigation_activated' ,
)
)
);
}
// Deprecated as of 1.8
if ( '' !== $settings [ 'sticky_menu_logo' ] ) {
// Navigation logo
$wp_customize -> add_setting (
'generate_menu_plus_settings[sticky_menu_logo]' ,
array (
'default' => $defaults [ 'sticky_menu_logo' ],
'type' => 'option' ,
'sanitize_callback' => 'esc_url_raw'
)
);
$wp_customize -> add_control (
new WP_Customize_Image_Control (
$wp_customize ,
'generate_menu_plus_settings[sticky_menu_logo]' ,
array (
'label' => esc_html__ ( 'Navigation Logo' , 'gp-premium' ),
'section' => $sticky_menu_section ,
'settings' => 'generate_menu_plus_settings[sticky_menu_logo]' ,
'priority' => 115
)
)
);
// Logo placement
$wp_customize -> add_setting (
'generate_menu_plus_settings[sticky_menu_logo_position]' ,
array (
'default' => $defaults [ 'sticky_menu_logo_position' ],
'type' => 'option' ,
'sanitize_callback' => 'generate_premium_sanitize_choices' ,
)
);
$wp_customize -> add_control (
'generate_menu_plus_settings[sticky_menu_logo_position]' ,
array (
'type' => 'select' ,
'label' => esc_html__ ( 'Navigation Logo Placement' , 'gp-premium' ),
'section' => $sticky_menu_section ,
'choices' => array (
'sticky-menu' => esc_html__ ( 'Sticky' , 'gp-premium' ),
'menu' => esc_html__ ( 'Sticky + Static' , 'gp-premium' ),
'regular-menu' => esc_html__ ( 'Static' , 'gp-premium' )
),
'settings' => 'generate_menu_plus_settings[sticky_menu_logo_position]' ,
'priority' => 120 ,
'active_callback' => 'generate_navigation_logo_activated' ,
)
);
}
// Mobile Header section
// No longer displays
$wp_customize -> add_section (
'menu_plus_mobile_header' ,
array (
'title' => esc_html__ ( 'Mobile Header' , 'gp-premium' ),
'capability' => 'edit_theme_options' ,
'panel' => $panel ,
'priority' => 11
)
);
if ( '' == $settings [ 'sticky_menu_logo' ] ) {
$wp_customize -> add_setting (
'generate_menu_plus_settings[navigation_as_header]' ,
array (
'default' => $defaults [ 'navigation_as_header' ],
'type' => 'option' ,
'sanitize_callback' => 'generate_premium_sanitize_checkbox' ,
)
);
$wp_customize -> add_control (
'generate_menu_plus_settings[navigation_as_header]' ,
array (
'type' => 'checkbox' ,
'label' => esc_html__ ( 'Use Navigation as Header' , 'gp-premium' ),
'section' => $header_section ,
'settings' => 'generate_menu_plus_settings[navigation_as_header]' ,
)
);
}
// Mobile header
$wp_customize -> add_setting (
'generate_menu_plus_settings[mobile_header]' ,
array (
'default' => $defaults [ 'mobile_header' ],
'type' => 'option' ,
'sanitize_callback' => 'generate_premium_sanitize_choices'
)
);
$wp_customize -> add_control (
'generate_menu_plus_settings[mobile_header]' ,
array (
'type' => 'select' ,
'label' => esc_html__ ( 'Mobile Header' , 'gp-premium' ),
'section' => $header_section ,
'choices' => array (
'disable' => esc_html__ ( 'Off' , 'gp-premium' ),
'enable' => esc_html__ ( 'On' , 'gp-premium' )
),
'settings' => 'generate_menu_plus_settings[mobile_header]' ,
)
);
if ( defined ( 'GENERATE_VERSION' ) && version_compare ( GENERATE_VERSION , '2.3-alpha.1' , '<' ) ) {
$wp_customize -> add_control (
new GeneratePress_Pro_Range_Slider_Control (
$wp_customize ,
'generate_menu_plus_settings[mobile_menu_breakpoint]' ,
array (
'label' => esc_html__ ( 'Breakpoint' , 'gp-premium' ),
'section' => $header_section ,
'settings' => array (
'desktop' => 'generate_menu_plus_settings[mobile_menu_breakpoint]' ,
),
'choices' => array (
'desktop' => array (
'min' => 768 ,
'max' => 2000 ,
'step' => 5 ,
'edit' => true ,
'unit' => 'px' ,
),
),
'active_callback' => 'generate_mobile_header_activated' ,
)
)
);
}
$wp_customize -> add_setting (
'generate_menu_plus_settings[mobile_header_branding]' ,
array (
'default' => $defaults [ 'mobile_header_branding' ],
'type' => 'option' ,
'sanitize_callback' => 'generate_premium_sanitize_choices'
)
);
$wp_customize -> add_control (
'generate_menu_plus_settings[mobile_header_branding]' ,
array (
'type' => 'select' ,
'label' => esc_html__ ( 'Branding Type' , 'gp-premium' ),
'section' => $header_section ,
'choices' => array (
'logo' => esc_html__ ( 'Logo' , 'gp-premium' ),
'title' => esc_html__ ( 'Site Title' , 'gp-premium' )
),
'settings' => 'generate_menu_plus_settings[mobile_header_branding]' ,
'active_callback' => 'generate_mobile_header_activated' ,
)
);
// Mobile header logo
$wp_customize -> add_setting (
'generate_menu_plus_settings[mobile_header_logo]' ,
array (
'default' => $defaults [ 'mobile_header_logo' ],
'type' => 'option' ,
'sanitize_callback' => 'esc_url_raw'
)
);
$wp_customize -> add_control (
new WP_Customize_Image_Control (
$wp_customize ,
'generate_menu_plus_settings[mobile_header_logo]' ,
array (
'label' => esc_html__ ( 'Logo' , 'gp-premium' ),
'section' => $header_section ,
'settings' => 'generate_menu_plus_settings[mobile_header_logo]' ,
'active_callback' => 'generate_mobile_header_logo_active_callback'
)
)
);
// Sticky mobile header
$wp_customize -> add_setting (
'generate_menu_plus_settings[mobile_header_sticky]' ,
array (
'default' => $defaults [ 'mobile_header_sticky' ],
'type' => 'option' ,
'sanitize_callback' => 'generate_premium_sanitize_choices'
)
);
$wp_customize -> add_control (
'generate_menu_plus_settings[mobile_header_sticky]' ,
array (
'type' => 'select' ,
'label' => esc_html__ ( 'Sticky' , 'gp-premium' ),
'section' => $header_section ,
'choices' => array (
'enable' => esc_html__ ( 'On' , 'gp-premium' ),
'disable' => esc_html__ ( 'Off' , 'gp-premium' )
),
'settings' => 'generate_menu_plus_settings[mobile_header_sticky]' ,
'active_callback' => 'generate_mobile_header_activated'
)
);
// Auto hide on scroll down
$wp_customize -> add_setting (
'generate_menu_plus_settings[mobile_header_auto_hide_sticky]' ,
array (
'default' => $defaults [ 'mobile_header_auto_hide_sticky' ],
'type' => 'option' ,
'sanitize_callback' => 'generate_premium_sanitize_checkbox'
)
);
$wp_customize -> add_control (
'generate_menu_plus_settings[mobile_header_auto_hide_sticky]' ,
array (
'type' => 'checkbox' ,
'label' => esc_html__ ( 'Hide when scrolling down' , 'gp-premium' ),
'section' => $header_section ,
'settings' => 'generate_menu_plus_settings[mobile_header_auto_hide_sticky]' ,
'active_callback' => 'generate_mobile_header_sticky_activated'
)
);
// Slide-out menu section
$wp_customize -> add_section (
'menu_plus_slideout_menu' ,
array (
'title' => esc_html__ ( 'Off Canvas Panel' , 'gp-premium' ),
'capability' => 'edit_theme_options' ,
'panel' => $panel ,
'priority' => 34
)
);
$wp_customize -> add_control (
new GeneratePress_Section_Shortcut_Control (
$wp_customize ,
'generate_off_canvas_layout_shortcuts' ,
array (
'section' => 'menu_plus_slideout_menu' ,
'element' => __ ( 'Off Canvas Panel' , 'gp-premium' ),
'shortcuts' => array (
'colors' => 'slideout_color_section' ,
'typography' => 'generate_slideout_typography' ,
),
'settings' => ( isset ( $wp_customize -> selective_refresh ) ) ? array () : 'blogname' ,
'priority' => 1 ,
)
)
);
// Slide-out menu
$wp_customize -> add_setting (
'generate_menu_plus_settings[slideout_menu]' ,
array (
'default' => $defaults [ 'slideout_menu' ],
'type' => 'option' ,
'sanitize_callback' => 'generate_premium_sanitize_choices'
)
);
$wp_customize -> add_control (
'generate_menu_plus_settings[slideout_menu]' ,
array (
'type' => 'select' ,
'label' => esc_html__ ( 'Off Canvas Panel' , 'gp-premium' ),
'section' => 'menu_plus_slideout_menu' ,
'choices' => array (
'mobile' => esc_html__ ( 'Mobile only' , 'gp-premium' ),
'desktop' => esc_html__ ( 'Desktop only' , 'gp-premium' ),
'both' => esc_html__ ( 'On' , 'gp-premium' ),
'false' => esc_html__ ( 'Off' , 'gp-premium' )
),
'settings' => 'generate_menu_plus_settings[slideout_menu]' ,
)
);
$wp_customize -> add_setting (
'generate_menu_plus_settings[off_canvas_desktop_toggle_label]' ,
array (
'default' => $defaults [ 'off_canvas_desktop_toggle_label' ],
'type' => 'option' ,
'sanitize_callback' => 'wp_kses_post'
)
);
$wp_customize -> add_control (
'generate_menu_plus_settings[off_canvas_desktop_toggle_label]' , array (
'label' => esc_html__ ( 'Desktop Toggle Label' , 'gp-premium' ),
'section' => 'menu_plus_slideout_menu' ,
'settings' => 'generate_menu_plus_settings[off_canvas_desktop_toggle_label]' ,
'active_callback' => 'generate_slideout_navigation_activated' ,
)
);
$wp_customize -> add_setting (
'generate_menu_plus_settings[slideout_menu_style]' ,
array (
'default' => $defaults [ 'slideout_menu_style' ],
'type' => 'option' ,
'sanitize_callback' => 'generate_premium_sanitize_choices'
)
);
$wp_customize -> add_control (
'generate_menu_plus_settings[slideout_menu_style]' ,
array (
'type' => 'select' ,
'label' => esc_html__ ( 'Style' , 'gp-premium' ),
'section' => 'menu_plus_slideout_menu' ,
'choices' => array (
'slide' => esc_html__ ( 'Slide' , 'gp-premium' ),
'overlay' => esc_html__ ( 'Overlay' , 'gp-premium' ),
),
'settings' => 'generate_menu_plus_settings[slideout_menu_style]' ,
'active_callback' => 'generate_slideout_navigation_activated' ,
)
);
$wp_customize -> add_setting (
'generate_menu_plus_settings[slideout_menu_side]' ,
array (
'default' => $defaults [ 'slideout_menu_side' ],
'type' => 'option' ,
'sanitize_callback' => 'generate_premium_sanitize_choices'
)
);
$wp_customize -> add_control (
'generate_menu_plus_settings[slideout_menu_side]' ,
array (
'type' => 'select' ,
'label' => esc_html__ ( 'Side' , 'gp-premium' ),
'section' => 'menu_plus_slideout_menu' ,
'choices' => array (
'left' => esc_html__ ( 'Left' , 'gp-premium' ),
'right' => esc_html__ ( 'Right' , 'gp-premium' ),
),
'settings' => 'generate_menu_plus_settings[slideout_menu_side]' ,
'active_callback' => 'generate_is_slideout_navigation_active_callback' ,
)
);
$wp_customize -> add_control (
new GeneratePress_Action_Button_Control (
$wp_customize ,
'generate_set_slideout_overlay_option' ,
array (
'section' => 'menu_plus_slideout_menu' ,
'data_type' => 'overlay_design' ,
'label' => __ ( 'Set Overlay Defaults' , 'gp-premium' ),
'description' => esc_html__ ( 'Clicking the above button will design your overlay by changing some of your off canvas color and typography options.' , 'gp-premium' ),
'settings' => ( isset ( $wp_customize -> selective_refresh ) ) ? array () : 'blogname' ,
'active_callback' => 'generate_is_overlay_navigation_active_callback' ,
)
)
);
$wp_customize -> add_setting (
'generate_menu_plus_settings[slideout_close_button]' ,
array (
'default' => $defaults [ 'slideout_close_button' ],
'type' => 'option' ,
'sanitize_callback' => 'generate_premium_sanitize_choices'
)
);
$wp_customize -> add_control (
'generate_menu_plus_settings[slideout_close_button]' ,
array (
'type' => 'select' ,
'label' => esc_html__ ( 'Close Button' , 'gp-premium' ),
'section' => 'menu_plus_slideout_menu' ,
'choices' => array (
'outside' => esc_html__ ( 'Outside' , 'gp-premium' ),
'inside' => esc_html__ ( 'Inside' , 'gp-premium' ),
),
'settings' => 'generate_menu_plus_settings[slideout_close_button]' ,
'active_callback' => 'generate_is_slideout_navigation_active_callback' ,
)
);
}
}
if ( ! function_exists ( 'generate_menu_plus_enqueue_css' ) ) {
add_action ( 'wp_enqueue_scripts' , 'generate_menu_plus_enqueue_css' , 100 );
/**
* Enqueue scripts
*/
function generate_menu_plus_enqueue_css () {
$settings = wp_parse_args (
get_option ( 'generate_menu_plus_settings' , array () ),
generate_menu_plus_get_defaults ()
);
$suffix = defined ( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min' ;
// Add sticky menu script
if ( 'false' !== $settings [ 'sticky_menu' ] ) {
wp_enqueue_style ( 'generate-sticky' , plugin_dir_url ( __FILE__ ) . " css/sticky { $suffix } .css " , array (), GENERATE_MENU_PLUS_VERSION );
}
// Add slideout menu script
if ( 'false' !== $settings [ 'slideout_menu' ] ) {
wp_enqueue_style ( 'generate-offside' , plugin_dir_url ( __FILE__ ) . " css/offside { $suffix } .css " , array (), GENERATE_MENU_PLUS_VERSION );
wp_add_inline_style ( 'generate-offside' , generate_do_off_canvas_css () );
$font_icons = true ;
if ( function_exists ( 'generate_get_option' ) ) {
if ( 'font' !== generate_get_option ( 'icons' ) ) {
$font_icons = false ;
}
}
if ( $font_icons ) {
wp_enqueue_style ( 'gp-premium-icons' );
}
}
// Add regular menu logo styling
if ( '' !== $settings [ 'sticky_menu_logo' ] ) {
wp_enqueue_style ( 'generate-menu-logo' , plugin_dir_url ( __FILE__ ) . " css/menu-logo { $suffix } .css " , array (), GENERATE_MENU_PLUS_VERSION );
wp_add_inline_style ( 'generate-menu-logo' , generate_do_mobile_navigation_logo_css () );
}
if ( $settings [ 'navigation_as_header' ] || $settings [ 'sticky_navigation_logo' ] || 'enable' == $settings [ 'mobile_header' ] ) {
wp_enqueue_style ( 'generate-navigation-branding' , plugin_dir_url ( __FILE__ ) . " css/navigation-branding { $suffix } .css " , array (), GENERATE_MENU_PLUS_VERSION );
wp_add_inline_style ( 'generate-navigation-branding' , generate_do_nav_branding_css () );
}
// Add inline CSS
wp_add_inline_style ( 'generate-style' , generate_menu_plus_inline_css () );
}
}
if ( ! function_exists ( 'generate_menu_plus_enqueue_js' ) ) {
add_action ( 'wp_enqueue_scripts' , 'generate_menu_plus_enqueue_js' , 0 );
/**
* Enqueue scripts
*/
function generate_menu_plus_enqueue_js () {
$settings = wp_parse_args (
get_option ( 'generate_menu_plus_settings' , array () ),
generate_menu_plus_get_defaults ()
);
$suffix = defined ( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min' ;
// Add sticky menu script
if ( ( 'false' !== $settings [ 'sticky_menu' ] ) || ( 'enable' == $settings [ 'mobile_header' ] && 'enable' == $settings [ 'mobile_header_sticky' ] ) ) {
wp_enqueue_script ( 'generate-sticky' , plugin_dir_url ( __FILE__ ) . " js/sticky { $suffix } .js " , array ( 'jquery' ), GENERATE_MENU_PLUS_VERSION , true );
}
// Add slideout menu script
if ( 'false' !== $settings [ 'slideout_menu' ] ) {
wp_enqueue_script ( 'generate-offside' , plugin_dir_url ( __FILE__ ) . " js/offside { $suffix } .js " , array (), GENERATE_MENU_PLUS_VERSION , true );
wp_localize_script (
'generate-offside' ,
'offSide' ,
array (
'side' => $settings [ 'slideout_menu_side' ]
)
);
}
}
}
if ( ! function_exists ( 'generate_menu_plus_mobile_header_js' ) ) {
add_action ( 'wp_enqueue_scripts' , 'generate_menu_plus_mobile_header_js' , 15 );
/**
* Enqueue scripts
*/
function generate_menu_plus_mobile_header_js () {
if ( function_exists ( 'wp_add_inline_script' ) ) {
$settings = wp_parse_args (
get_option ( 'generate_menu_plus_settings' , array () ),
generate_menu_plus_get_defaults ()
);
if ( 'enable' == $settings [ 'mobile_header' ] && ( 'desktop' == $settings [ 'slideout_menu' ] || 'false' == $settings [ 'slideout_menu' ] ) ) {
wp_add_inline_script ( 'generate-navigation' ,
" jQuery( document ).ready( function( $ ) {
$ ( '#mobile-header .menu-toggle' ) . on ( 'click' , function ( e ) {
e . preventDefault ();
$ ( this ) . closest ( '#mobile-header' ) . toggleClass ( 'toggled' );
$ ( this ) . closest ( '#mobile-header' ) . attr ( 'aria-expanded' , $ ( this ) . closest ( '#mobile-header' ) . attr ( 'aria-expanded' ) === 'true' ? 'false' : 'true' );
$ ( this ) . toggleClass ( 'toggled' );
$ ( this ) . children ( 'i' ) . toggleClass ( 'fa-bars' ) . toggleClass ( 'fa-close' );
$ ( this ) . attr ( 'aria-expanded' , $ ( this ) . attr ( 'aria-expanded' ) === 'false' ? 'true' : 'false' );
});
}); "
);
}
}
}
}
if ( ! function_exists ( 'generate_menu_plus_inline_css' ) ) {
/**
* Enqueue inline CSS
*/
function generate_menu_plus_inline_css () {
// Bail if GP isn't active
if ( ! function_exists ( 'generate_get_defaults' ) ) {
return ;
}
$generate_settings = wp_parse_args (
get_option ( 'generate_settings' , array () ),
generate_get_defaults ()
);
$generate_menu_plus_settings = wp_parse_args (
get_option ( 'generate_menu_plus_settings' , array () ),
generate_menu_plus_get_defaults ()
);
if ( function_exists ( 'generate_spacing_get_defaults' ) ) {
$spacing_settings = wp_parse_args (
get_option ( 'generate_spacing_settings' , array () ),
generate_spacing_get_defaults ()
);
$menu_height = $spacing_settings [ 'menu_item_height' ];
} else {
$menu_height = 60 ;
}
$return = '' ;
if ( '' !== $generate_menu_plus_settings [ 'sticky_menu_logo' ] ) {
$return .= '.main-navigation .navigation-logo img {height:' . absint ( $menu_height ) . 'px;}' ;
$return .= '@media (max-width: ' . ( absint ( $generate_settings [ 'container_width' ] + 10 ) ) . 'px) {.main-navigation .navigation-logo.site-logo {margin-left:0;}body.sticky-menu-logo.nav-float-left .main-navigation .site-logo.navigation-logo {margin-right:0;}}' ;
}
if ( 'false' !== $generate_menu_plus_settings [ 'sticky_menu' ] ) {
$return .= '.main-navigation .main-nav ul li a,.menu-toggle,.main-navigation .mobile-bar-items a{transition: line-height 300ms ease}' ;
if ( class_exists ( 'FLBuilderModel' ) ) {
$return .= '.fl-builder-edit .navigation-stick {z-index: 10 !important;}' ;
}
}
if ( function_exists ( 'generate_get_color_defaults' ) ) {
$color_defaults = wp_parse_args (
get_option ( 'generate_settings' , array () ),
generate_get_color_defaults ()
);
if ( 'true' === $generate_menu_plus_settings [ 'sticky_menu' ] || 'mobile' === $generate_menu_plus_settings [ 'sticky_menu' ] || 'enable' === $generate_menu_plus_settings [ 'mobile_header_sticky' ] ) {
$return .= '.main-navigation.toggled .main-nav > ul{background-color: ' . $color_defaults [ 'navigation_background_color' ] . '}' ;
}
}
return $return ;
}
}
if ( ! function_exists ( 'generate_menu_plus_mobile_header' ) ) {
add_action ( 'generate_after_header' , 'generate_menu_plus_mobile_header' , 5 );
add_action ( 'generate_inside_mobile_header' , 'generate_navigation_search' , 1 );
add_action ( 'generate_inside_mobile_header' , 'generate_mobile_menu_search_icon' );
function generate_menu_plus_mobile_header () {
$settings = wp_parse_args (
get_option ( 'generate_menu_plus_settings' , array () ),
generate_menu_plus_get_defaults ()
);
if ( 'disable' == $settings [ 'mobile_header' ] ) {
return ;
}
if ( 'false' !== $settings [ 'mobile_header_auto_hide_sticky' ] && $settings [ 'mobile_header_auto_hide_sticky' ] ) {
$hide_sticky = ' data-auto-hide-sticky="true"' ;
} else {
$hide_sticky = '' ;
}
$microdata = 'itemtype="https://schema.org/SiteNavigationElement" itemscope' ;
if ( function_exists ( 'generate_get_microdata' ) ) {
$microdata = generate_get_microdata ( 'navigation' );
}
$classes = array (
'main-navigation' ,
'mobile-header-navigation' ,
);
if ( ( 'logo' === $settings [ 'mobile_header_branding' ] && '' !== $settings [ 'mobile_header_logo' ] ) || 'title' === $settings [ 'mobile_header_branding' ] ) {
$classes [] = 'has-branding' ;
}
if ( 'enable' === $settings [ 'mobile_header_sticky' ] ) {
if ( ( 'logo' === $settings [ 'mobile_header_branding' ] && '' !== $settings [ 'mobile_header_logo' ] ) || 'title' === $settings [ 'mobile_header_branding' ] ) {
$classes [] = 'has-sticky-branding' ;
}
}
$classes = implode ( ' ' , $classes );
?>
< nav id = " mobile-header " < ? php echo $hide_sticky ; ?> class="<?php echo $classes; ?>" <?php echo $microdata; ?>>
< div class = " inside-navigation grid-container grid-parent " >
< ? php
do_action ( 'generate_inside_mobile_header' );
// Remove the menu toggle if it's disabled using Disable Elements.
$disable_navigation = false ;
if ( is_singular () ) {
$disable_navigation = get_post_meta ( get_the_ID (), '_generate-disable-nav' , true );
}
if ( ! $disable_navigation ) :
?>
< button class = " menu-toggle " aria - controls = " mobile-menu " aria - expanded = " false " >
< ? php
do_action ( 'generate_inside_mobile_header_menu' );
if ( function_exists ( 'generate_do_svg_icon' ) ) {
generate_do_svg_icon ( 'menu-bars' , true );
}
$mobile_menu_label = apply_filters ( 'generate_mobile_menu_label' , __ ( 'Menu' , 'gp-premium' ) );
if ( $mobile_menu_label ) {
printf (
'<span class="mobile-menu">%s</span>' ,
$mobile_menu_label
);
} else {
printf (
'<span class="screen-reader-text">%s</span>' ,
__ ( 'Menu' , 'gp-premium' )
);
}
?>
</ button >
< ? php
endif ;
wp_nav_menu (
array (
'theme_location' => apply_filters ( 'generate_mobile_header_theme_location' , 'primary' ),
'container' => 'div' ,
'container_class' => 'main-nav' ,
'container_id' => 'mobile-menu' ,
'menu_class' => '' ,
'fallback_cb' => 'generate_menu_fallback' ,
'items_wrap' => '<ul id="%1$s" class="%2$s ' . join ( ' ' , generate_get_menu_class () ) . '">%3$s</ul>'
)
);
?>
</ div ><!-- . inside - navigation -->
</ nav ><!-- #site-navigation -->
< ? php
}
}
if ( ! function_exists ( 'generate_slideout_navigation' ) ) {
add_action ( 'wp_footer' , 'generate_slideout_navigation' , 0 );
/**
* Build the navigation .
*
* @ since 0.1
*/
function generate_slideout_navigation () {
$settings = wp_parse_args (
get_option ( 'generate_menu_plus_settings' , array () ),
generate_menu_plus_get_defaults ()
);
if ( 'false' === $settings [ 'slideout_menu' ] ) {
return ;
}
$microdata = 'itemtype="https://schema.org/SiteNavigationElement" itemscope' ;
if ( function_exists ( 'generate_get_microdata' ) ) {
$microdata = generate_get_microdata ( 'navigation' );
}
$overlay = '' ;
if ( 'overlay' === $settings [ 'slideout_menu_style' ] ) {
$overlay = ' do-overlay' ;
}
?>
< nav id = " generate-slideout-menu " class = " main-navigation slideout-navigation<?php echo $overlay ; ?> " < ? php echo $microdata ; ?> style="display: none;">
< div class = " inside-navigation grid-container grid-parent " >
< ? php
do_action ( 'generate_inside_slideout_navigation' );
wp_nav_menu (
array (
'theme_location' => 'slideout' ,
'container' => 'div' ,
'container_class' => 'main-nav' ,
'menu_class' => '' ,
'fallback_cb' => false ,
'items_wrap' => '<ul id="%1$s" class="%2$s slideout-menu">%3$s</ul>'
)
);
do_action ( 'generate_after_slideout_navigation' );
?>
</ div ><!-- . inside - navigation -->
</ nav ><!-- #site-navigation -->
< ? php if ( 'slide' === $settings [ 'slideout_menu_style' ] ) :
$svg_icon = '' ;
if ( function_exists ( 'generate_get_svg_icon' ) ) {
$svg_icon = generate_get_svg_icon ( 'pro-close' );
}
?>
< div class = " slideout-overlay " >
< ? php if ( 'outside' === $settings [ 'slideout_close_button' ] && 'slide' === $settings [ 'slideout_menu_style' ] ) : ?>
< button class = " slideout-exit <?php echo $svg_icon ? 'has-svg-icon' : ''; ?> " >
< ? php echo $svg_icon ; ?>
< span class = " screen-reader-text " >< ? php esc_attr_e ( 'Close' , 'gp-premium' ); ?> </span>
</ button >
< ? php endif ; ?>
</ div >
< ? php endif ;
}
}
add_action ( 'generate_after_slideout_navigation' , 'generate_slideout_menu_widget' );
function generate_slideout_menu_widget () {
if ( is_active_sidebar ( 'slide-out-widget' ) ) {
dynamic_sidebar ( 'slide-out-widget' );
}
}
if ( ! function_exists ( 'generate_slideout_menu_fallback' ) ) {
/**
* Menu fallback .
*
* @ param array $args
* @ return string
* @ since 1.1 . 4
*/
function generate_slideout_menu_fallback ( $args ) {
}
}
add_action ( 'widgets_init' , 'generate_slideout_navigation_widget' , 99 );
/**
* Register widgetized area and update sidebar with default widgets
*/
function generate_slideout_navigation_widget () {
register_sidebar ( array (
'name' => esc_html__ ( 'Off Canvas Panel' , 'gp-premium' ),
'id' => 'slide-out-widget' ,
'before_widget' => '<aside id="%1$s" class="slideout-widget %2$s">' ,
'after_widget' => '</aside>' ,
'before_title' => apply_filters ( 'generate_start_widget_title' , '<h2 class="widget-title">' ),
'after_title' => apply_filters ( 'generate_end_widget_title' , '</h2>' ),
) );
}
if ( ! function_exists ( 'generate_slideout_body_classes' ) ) {
add_filter ( 'body_class' , 'generate_slideout_body_classes' );
/**
* Adds custom classes to body
*
* @ since 0.1
*/
function generate_slideout_body_classes ( $classes ) {
$settings = wp_parse_args (
get_option ( 'generate_menu_plus_settings' , array () ),
generate_menu_plus_get_defaults ()
);
// Slide-out menu classes
if ( 'false' !== $settings [ 'slideout_menu' ] ) {
$classes [] = 'slideout-enabled' ;
}
if ( 'mobile' == $settings [ 'slideout_menu' ] ) {
$classes [] = 'slideout-mobile' ;
}
if ( 'desktop' == $settings [ 'slideout_menu' ] ) {
$classes [] = 'slideout-desktop' ;
}
if ( 'both' == $settings [ 'slideout_menu' ] ) {
$classes [] = 'slideout-both' ;
}
// Sticky menu transition class
if ( 'slide' == $settings [ 'sticky_menu_effect' ] ) {
$classes [] = 'sticky-menu-slide' ;
}
if ( 'fade' == $settings [ 'sticky_menu_effect' ] ) {
$classes [] = 'sticky-menu-fade' ;
}
if ( 'none' == $settings [ 'sticky_menu_effect' ] ) {
$classes [] = 'sticky-menu-no-transition' ;
}
// If sticky menu is enabled
if ( 'false' !== $settings [ 'sticky_menu' ] ) {
$classes [] = 'sticky-enabled' ;
}
// Sticky menu classes
if ( '' !== $settings [ 'sticky_menu_logo' ] ) {
if ( 'sticky-menu' == $settings [ 'sticky_menu_logo_position' ] ) {
$classes [] = 'sticky-menu-logo' ;
} elseif ( 'menu' == $settings [ 'sticky_menu_logo_position' ] ) {
$classes [] = 'menu-logo' ;
} elseif ( 'regular-menu' == $settings [ 'sticky_menu_logo_position' ] ) {
$classes [] = 'regular-menu-logo' ;
}
$classes [] = 'menu-logo-enabled' ;
}
// Menu logo classes
if ( 'mobile' == $settings [ 'sticky_menu' ] ) {
$classes [] = 'mobile-sticky-menu' ;
}
if ( 'desktop' == $settings [ 'sticky_menu' ] ) {
$classes [] = 'desktop-sticky-menu' ;
}
if ( 'true' == $settings [ 'sticky_menu' ] ) {
$classes [] = 'both-sticky-menu' ;
}
// Mobile header classes
if ( 'enable' == $settings [ 'mobile_header' ] ) {
$classes [] = 'mobile-header' ;
}
if ( '' !== $settings [ 'mobile_header_logo' ] && 'enable' == $settings [ 'mobile_header' ] ) {
$classes [] = 'mobile-header-logo' ;
}
if ( 'enable' == $settings [ 'mobile_header_sticky' ] && 'enable' == $settings [ 'mobile_header' ] ) {
$classes [] = 'mobile-header-sticky' ;
}
return $classes ;
}
}
if ( ! function_exists ( 'generate_menu_plus_slidebar_icon' ) ) {
add_filter ( 'wp_nav_menu_items' , 'generate_menu_plus_slidebar_icon' , 10 , 2 );
/**
* Add slidebar icon to primary menu if set
*
* @ since 0.1
*/
function generate_menu_plus_slidebar_icon ( $nav , $args ) {
$settings = wp_parse_args (
get_option ( 'generate_menu_plus_settings' , array () ),
generate_menu_plus_get_defaults ()
);
// If the search icon isn't enabled, return the regular nav
if ( 'desktop' !== $settings [ 'slideout_menu' ] && 'both' !== $settings [ 'slideout_menu' ] ) {
return $nav ;
}
// If our primary menu is set, add the search icon
if ( 'primary' === $args -> theme_location ) {
$svg_icon = '' ;
if ( function_exists ( 'generate_get_svg_icon' ) ) {
$svg_icon = generate_get_svg_icon ( 'pro-menu-bars' );
}
$icon = apply_filters ( 'generate_off_canvas_toggle_output' , sprintf (
'<li class="slideout-toggle menu-item-align-right %2$s"><a href="#">%1$s%3$s</a></li>' ,
$svg_icon ,
$svg_icon ? 'has-svg-icon' : '' ,
'' !== $settings [ 'off_canvas_desktop_toggle_label' ] ? '<span class="off-canvas-toggle-label">' . wp_kses_post ( $settings [ 'off_canvas_desktop_toggle_label' ] ) . '</span>' : ''
) );
return $nav . $icon ;
}
return $nav ;
}
}
if ( ! function_exists ( 'generate_sticky_navigation_classes' ) ) {
add_filter ( 'generate_navigation_class' , 'generate_sticky_navigation_classes' );
/**
* Adds custom classes to the navigation .
*
* @ since 0.1
*/
function generate_sticky_navigation_classes ( $classes ) {
$settings = wp_parse_args (
get_option ( 'generate_menu_plus_settings' , array () ),
generate_menu_plus_get_defaults ()
);
if ( 'false' !== $settings [ 'sticky_menu' ] && $settings [ 'auto_hide_sticky' ] ) {
$classes [] = 'auto-hide-sticky' ;
}
if ( function_exists ( 'generate_get_option' ) ) {
if ( $settings [ 'navigation_as_header' ] && ( get_theme_mod ( 'custom_logo' ) || ! generate_get_option ( 'hide_title' ) ) ) {
$classes [] = 'has-branding' ;
}
}
if ( $settings [ 'sticky_navigation_logo' ] ) {
$classes [] = 'has-sticky-branding' ;
}
return $classes ;
}
}
if ( ! function_exists ( 'generate_menu_plus_label' ) ) {
add_filter ( 'generate_mobile_menu_label' , 'generate_menu_plus_label' );
/**
* Add mobile menu label
*
* @ since 0.1
*/
function generate_menu_plus_label () {
$settings = wp_parse_args (
get_option ( 'generate_menu_plus_settings' , array () ),
generate_menu_plus_get_defaults ()
);
return wp_kses_post ( $settings [ 'mobile_menu_label' ] );
}
}
if ( ! function_exists ( 'generate_menu_plus_sticky_logo' ) ) {
add_action ( 'generate_inside_navigation' , 'generate_menu_plus_sticky_logo' );
/**
* Add logo to sticky menu
*
* @ since 0.1
*/
function generate_menu_plus_sticky_logo () {
$settings = wp_parse_args (
get_option ( 'generate_menu_plus_settings' , array () ),
generate_menu_plus_get_defaults ()
);
if ( '' == $settings [ 'sticky_menu_logo' ] ) {
return ;
}
echo apply_filters ( 'generate_navigation_logo_output' , sprintf (
' < div class = " site-logo sticky-logo navigation-logo " >
< a href = " %1 $s " title = " %2 $s " rel = " home " >
< img src = " %3 $s " alt = " %4 $s " />
</ a >
</ div > ' ,
esc_url ( apply_filters ( 'generate_logo_href' , home_url ( '/' ) ) ),
esc_attr ( apply_filters ( 'generate_logo_title' , get_bloginfo ( 'name' , 'display' ) ) ),
esc_url ( apply_filters ( 'generate_navigation_logo' , $settings [ 'sticky_menu_logo' ] ) ),
esc_attr ( apply_filters ( 'generate_logo_title' , get_bloginfo ( 'name' , 'display' ) ) )
) );
}
}
if ( ! function_exists ( 'generate_menu_plus_mobile_header_logo' ) ) {
add_action ( 'generate_inside_mobile_header' , 'generate_menu_plus_mobile_header_logo' , 5 );
/**
* Add logo to mobile header
*
* @ since 0.1
*/
function generate_menu_plus_mobile_header_logo () {
$settings = wp_parse_args (
get_option ( 'generate_menu_plus_settings' , array () ),
generate_menu_plus_get_defaults ()
);
if ( 'logo' === $settings [ 'mobile_header_branding' ] && '' !== $settings [ 'mobile_header_logo' ] ) {
echo apply_filters ( 'generate_mobile_header_logo_output' , sprintf (
' < div class = " site-logo mobile-header-logo " >
< a href = " %1 $s " title = " %2 $s " rel = " home " >
< img src = " %3 $s " alt = " %4 $s " />
</ a >
</ div > ' ,
esc_url ( apply_filters ( 'generate_logo_href' , home_url ( '/' ) ) ),
esc_attr ( apply_filters ( 'generate_logo_title' , get_bloginfo ( 'name' , 'display' ) ) ),
esc_url ( apply_filters ( 'generate_mobile_header_logo' , $settings [ 'mobile_header_logo' ] ) ),
esc_attr ( apply_filters ( 'generate_logo_title' , get_bloginfo ( 'name' , 'display' ) ) )
) );
}
if ( 'title' === $settings [ 'mobile_header_branding' ] ) {
echo '<div class="navigation-branding">' ;
do_action ( 'generate_inside_mobile_header_branding' );
echo apply_filters ( 'generate_site_title_output' , sprintf (
' <% 1 $s class = " main-title " itemprop = " headline " >
< a href = " %2 $s " rel = " home " >
% 3 $s
</ a >
</% 1 $s > ' ,
( is_front_page () && is_home () ) ? 'h1' : 'p' ,
esc_url ( apply_filters ( 'generate_site_title_href' , home_url ( '/' ) ) ),
get_bloginfo ( 'name' )
) );
echo '</div>' ;
}
}
}
/**
* Build our off canvas CSS .
*
* @ since 1.8
*/
function generate_do_off_canvas_css () {
if ( ! function_exists ( 'generate_get_color_defaults' ) || ! function_exists ( 'generate_get_defaults' ) || ! function_exists ( 'generate_get_default_fonts' ) ) {
return ;
}
$defaults = array_merge ( generate_get_color_defaults (), generate_get_defaults (), generate_get_default_fonts () );
// Get our color settings
$settings = wp_parse_args (
get_option ( 'generate_settings' , array () ),
$defaults
);
$menu_plus_settings = wp_parse_args (
get_option ( 'generate_menu_plus_settings' , array () ),
generate_menu_plus_get_defaults ()
);
// Initiate our CSS class
require_once GP_LIBRARY_DIRECTORY . 'class-make-css.php' ;
$css = new GeneratePress_Pro_CSS ;
// Navigation background
$css -> set_selector ( '.slideout-navigation.main-navigation' );
$css -> add_property ( 'background-color' , esc_attr ( $settings [ 'slideout_background_color' ] ) );
// Navigation text
$css -> set_selector ( '.slideout-navigation.main-navigation .main-nav ul li a' );
$css -> add_property ( 'color' , esc_attr ( $settings [ 'slideout_text_color' ] ) );
$css -> add_property ( 'font-weight' , esc_attr ( $settings [ 'slideout_font_weight' ] ) );
$css -> add_property ( 'text-transform' , esc_attr ( $settings [ 'slideout_font_transform' ] ) );
if ( '' !== $settings [ 'slideout_font_size' ] ) {
$css -> add_property ( 'font-size' , absint ( $settings [ 'slideout_font_size' ] ), false , 'px' );
}
// Sub-navigation background
$css -> set_selector ( '.slideout-navigation.main-navigation ul ul' );
$css -> add_property ( 'background-color' , esc_attr ( $settings [ 'slideout_submenu_background_color' ] ) );
// Sub-navigation text
$css -> set_selector ( '.slideout-navigation.main-navigation .main-nav ul ul li a' );
$css -> add_property ( 'color' , esc_attr ( $settings [ 'slideout_submenu_text_color' ] ) );
if ( '' !== $settings [ 'slideout_font_size' ] ) {
$css -> add_property ( 'font-size' , absint ( $settings [ 'slideout_font_size' ] - 1 ), false , 'px' );
}
if ( '' !== $settings [ 'slideout_mobile_font_size' ] ) {
$css -> start_media_query ( generate_premium_get_media_query ( 'mobile' ) );
$css -> set_selector ( '.slideout-navigation.main-navigation .main-nav ul li a' );
$css -> add_property ( 'font-size' , absint ( $settings [ 'slideout_mobile_font_size' ] ), false , 'px' );
$css -> set_selector ( '.slideout-navigation.main-navigation .main-nav ul ul li a' );
$css -> add_property ( 'font-size' , absint ( $settings [ 'slideout_mobile_font_size' ] - 1 ), false , 'px' );
$css -> stop_media_query ();
}
// Navigation background/text on hover
$css -> set_selector ( '.slideout-navigation.main-navigation .main-nav ul li:hover > a,.slideout-navigation.main-navigation .main-nav ul li:focus > a,.slideout-navigation.main-navigation .main-nav ul li.sfHover > a' );
$css -> add_property ( 'color' , esc_attr ( $settings [ 'slideout_text_hover_color' ] ) );
$css -> add_property ( 'background-color' , esc_attr ( $settings [ 'slideout_background_hover_color' ] ) );
// Sub-Navigation background/text on hover
$css -> set_selector ( '.slideout-navigation.main-navigation .main-nav ul ul li:hover > a,.slideout-navigation.main-navigation .main-nav ul ul li:focus > a,.slideout-navigation.main-navigation .main-nav ul ul li.sfHover > a' );
$css -> add_property ( 'color' , esc_attr ( $settings [ 'slideout_submenu_text_hover_color' ] ) );
$css -> add_property ( 'background-color' , esc_attr ( $settings [ 'slideout_submenu_background_hover_color' ] ) );
// Navigation background / text current + hover
$css -> set_selector ( '.slideout-navigation.main-navigation .main-nav ul li[class*="current-menu-"] > a, .slideout-navigation.main-navigation .main-nav ul li[class*="current-menu-"] > a:hover,.slideout-navigation.main-navigation .main-nav ul li[class*="current-menu-"].sfHover > a' );
$css -> add_property ( 'color' , esc_attr ( $settings [ 'slideout_text_current_color' ] ) );
$css -> add_property ( 'background-color' , esc_attr ( $settings [ 'slideout_background_current_color' ] ) );
// Sub-Navigation background / text current + hover
$css -> set_selector ( '.slideout-navigation.main-navigation .main-nav ul ul li[class*="current-menu-"] > a,.slideout-navigation.main-navigation .main-nav ul ul li[class*="current-menu-"] > a:hover,.slideout-navigation.main-navigation .main-nav ul ul li[class*="current-menu-"].sfHover > a' );
$css -> add_property ( 'color' , esc_attr ( $settings [ 'slideout_submenu_text_current_color' ] ) );
$css -> add_property ( 'background-color' , esc_attr ( $settings [ 'slideout_submenu_background_current_color' ] ) );
$css -> set_selector ( '.slideout-navigation, .slideout-navigation a' );
if ( $settings [ 'slideout_text_color' ] ) {
$css -> add_property ( 'color' , esc_attr ( $settings [ 'slideout_text_color' ] ) );
} else {
$css -> add_property ( 'color' , esc_attr ( $settings [ 'navigation_text_color' ] ) );
}
$css -> set_selector ( '.slideout-navigation button.slideout-exit' );
if ( $settings [ 'slideout_text_color' ] ) {
$css -> add_property ( 'color' , esc_attr ( $settings [ 'slideout_text_color' ] ) );
} else {
$css -> add_property ( 'color' , esc_attr ( $settings [ 'navigation_text_color' ] ) );
}
if ( function_exists ( 'generate_spacing_get_defaults' ) ) {
$spacing_settings = wp_parse_args (
get_option ( 'generate_spacing_settings' , array () ),
generate_spacing_get_defaults ()
);
$css -> add_property ( 'padding-left' , absint ( $spacing_settings [ 'menu_item' ] ), false , 'px' );
$css -> add_property ( 'padding-right' , absint ( $spacing_settings [ 'menu_item' ] ), false , 'px' );
if ( ! empty ( $settings [ 'mobile_menu_item' ] ) ) {
$css -> start_media_query ( generate_premium_get_media_query ( 'mobile' ) );
$css -> set_selector ( '.slideout-navigation button.slideout-exit' );
$css -> add_property ( 'padding-left' , absint ( $spacing_settings [ 'mobile_menu_item' ] ), false , 'px' );
$css -> add_property ( 'padding-right' , absint ( $spacing_settings [ 'mobile_menu_item' ] ), false , 'px' );
$css -> stop_media_query ();
}
}
if ( function_exists ( 'generate_get_option' ) && function_exists ( 'generate_get_defaults' ) ) {
$theme_defaults = generate_get_defaults ();
if ( isset ( $theme_defaults [ 'icons' ] ) ) {
if ( 'svg' === generate_get_option ( 'icons' ) ) {
$css -> set_selector ( '.slide-opened nav.toggled .menu-toggle:before' );
$css -> add_property ( 'display' , 'none' );
}
}
}
return $css -> css_output ();
}
/**
* Write dynamic CSS for our navigation branding .
*
* @ since 1.8
*/
function generate_do_nav_branding_css () {
if ( ! function_exists ( 'generate_get_color_defaults' ) || ! function_exists ( 'generate_get_defaults' ) || ! function_exists ( 'generate_get_default_fonts' ) ) {
return ;
}
$defaults = array_merge ( generate_get_color_defaults (), generate_get_defaults (), generate_get_default_fonts () );
// Get our color settings
$settings = wp_parse_args (
get_option ( 'generate_settings' , array () ),
$defaults
);
$menu_plus_settings = wp_parse_args (
get_option ( 'generate_menu_plus_settings' , array () ),
generate_menu_plus_get_defaults ()
);
// Initiate our CSS class
require_once GP_LIBRARY_DIRECTORY . 'class-make-css.php' ;
$css = new GeneratePress_Pro_CSS ;
if ( 'enable' === $menu_plus_settings [ 'mobile_header' ] ) {
$css -> start_media_query ( generate_premium_get_media_query ( 'mobile-menu' ) );
$css -> set_selector ( '.site-header, #site-navigation, #sticky-navigation' );
$css -> add_property ( 'display' , 'none !important' );
$css -> add_property ( 'opacity' , '0.0' );
$css -> set_selector ( '#mobile-header' );
$css -> add_property ( 'display' , 'block !important' );
$css -> add_property ( 'width' , '100% !important' );
$css -> set_selector ( '#mobile-header .main-nav > ul' );
$css -> add_property ( 'display' , 'none' );
$css -> set_selector ( '#mobile-header.toggled .main-nav > ul, #mobile-header .menu-toggle, #mobile-header .mobile-bar-items' );
$css -> add_property ( 'display' , 'block' );
$css -> set_selector ( '#mobile-header .main-nav' );
$css -> add_property ( '-webkit-box-flex' , '0' );
$css -> add_property ( '-ms-flex' , '0 0 100%' );
$css -> add_property ( 'flex' , '0 0 100%' );
$css -> add_property ( '-webkit-box-ordinal-group' , '5' );
$css -> add_property ( '-ms-flex-order' , '4' );
$css -> add_property ( 'order' , '4' );
if ( ! $menu_plus_settings [ 'navigation_as_header' ] && 'title' === $menu_plus_settings [ 'mobile_header_branding' ] ) {
$css -> set_selector ( '.navigation-branding .main-title a, .navigation-branding .main-title a:hover, .navigation-branding .main-title a:visited' );
$css -> add_property ( 'color' , $settings [ 'navigation_text_color' ] );
}
$css -> stop_media_query ();
}
if ( ! function_exists ( 'generate_typography_premium_css' ) ) {
$css -> set_selector ( '.navigation-branding .main-title' );
$css -> add_property ( 'font-size' , '25px' );
$css -> add_property ( 'font-weight' , 'bold' );
}
$navigation_height = 60 ;
$mobile_navigation_height = '' ;
if ( function_exists ( 'generate_spacing_get_defaults' ) ) {
$spacing_settings = wp_parse_args (
get_option ( 'generate_spacing_settings' , array () ),
generate_spacing_get_defaults ()
);
$navigation_height = $spacing_settings [ 'menu_item_height' ];
if ( isset ( $spacing_settings [ 'mobile_menu_item_height' ] ) ) {
$mobile_navigation_height = $spacing_settings [ 'mobile_menu_item_height' ];
}
}
if ( '' !== $menu_plus_settings [ 'sticky_navigation_logo' ] ) {
$css -> set_selector ( '.main-navigation .sticky-navigation-logo, .main-navigation.navigation-stick .site-logo:not(.mobile-header-logo)' );
$css -> add_property ( 'display' , 'none' );
$css -> set_selector ( '.main-navigation.navigation-stick .sticky-navigation-logo' );
$css -> add_property ( 'display' , 'block' );
}
$css -> set_selector ( '.navigation-branding img, .site-logo.mobile-header-logo img' );
$css -> add_property ( 'height' , absint ( $navigation_height ), false , 'px' );
$css -> add_property ( 'width' , 'auto' );
$css -> set_selector ( '.navigation-branding .main-title' );
$css -> add_property ( 'line-height' , absint ( $navigation_height ), false , 'px' );
$css -> start_media_query ( '(max-width: ' . ( $settings [ 'container_width' ] + 10 ) . 'px)' );
$css -> set_selector ( '#site-navigation .navigation-branding, #sticky-navigation .navigation-branding' );
$css -> add_property ( 'margin-left' , '10px' );
$css -> stop_media_query ();
$css -> start_media_query ( generate_premium_get_media_query ( 'mobile-menu' ) );
$css -> set_selector ( '.main-navigation:not(.slideout-navigation) .main-nav' );
$css -> add_property ( '-webkit-box-flex' , '0' );
$css -> add_property ( '-ms-flex' , '0 0 100%' );
$css -> add_property ( 'flex' , '0 0 100%' );
$css -> set_selector ( '.main-navigation:not(.slideout-navigation) .inside-navigation' );
$css -> add_property ( '-ms-flex-wrap' , 'wrap' );
$css -> add_property ( 'flex-wrap' , 'wrap' );
$css -> add_property ( 'display' , '-webkit-box' );
$css -> add_property ( 'display' , '-ms-flexbox' );
$css -> add_property ( 'display' , 'flex' );
$css -> set_selector ( '.nav-aligned-center .navigation-branding, .nav-aligned-left .navigation-branding' );
$css -> add_property ( 'margin-right' , 'auto' );
$css -> set_selector ( '.nav-aligned-center .main-navigation.has-branding:not(.slideout-navigation) .inside-navigation .main-nav,.nav-aligned-center .main-navigation.has-sticky-branding.navigation-stick .inside-navigation .main-nav,.nav-aligned-left .main-navigation.has-branding:not(.slideout-navigation) .inside-navigation .main-nav,.nav-aligned-left .main-navigation.has-sticky-branding.navigation-stick .inside-navigation .main-nav' );
$css -> add_property ( 'margin-right' , '0px' );
if ( '' !== $mobile_navigation_height ) {
$css -> set_selector ( '.navigation-branding img, .site-logo.mobile-header-logo' );
$css -> add_property ( 'height' , absint ( $mobile_navigation_height ), false , 'px' );
$css -> set_selector ( '.navigation-branding .main-title' );
$css -> add_property ( 'line-height' , absint ( $mobile_navigation_height ), false , 'px' );
}
$css -> stop_media_query ();
return $css -> css_output ();
}
/**
* Add dynamic CSS for the legacy navigation logo option deprecated in 1.8 .
*
* @ since 1.8
*/
function generate_do_mobile_navigation_logo_css () {
// Initiate our CSS class
require_once GP_LIBRARY_DIRECTORY . 'class-make-css.php' ;
$css = new GeneratePress_Pro_CSS ;
$css -> start_media_query ( generate_premium_get_media_query ( 'mobile-menu' ) );
// Sticky & Sticky + Static logo.
$css -> set_selector ( '.sticky-menu-logo .navigation-stick:not(.mobile-header-navigation) .menu-toggle,.menu-logo .main-navigation:not(.mobile-header-navigation) .menu-toggle' );
$css -> add_property ( 'display' , 'inline-block' );
$css -> add_property ( 'clear' , 'none' );
$css -> add_property ( 'width' , 'auto' );
$css -> add_property ( 'float' , 'right' );
$css -> set_selector ( '.sticky-menu-logo .navigation-stick:not(.mobile-header-navigation) .mobile-bar-items,.menu-logo .main-navigation:not(.mobile-header-navigation) .mobile-bar-items' );
$css -> add_property ( 'position' , 'relative' );
$css -> add_property ( 'float' , 'right' );
// Static logo.
$css -> set_selector ( '.regular-menu-logo .main-navigation:not(.navigation-stick):not(.mobile-header-navigation) .menu-toggle' );
$css -> add_property ( 'display' , 'inline-block' );
$css -> add_property ( 'clear' , 'none' );
$css -> add_property ( 'width' , 'auto' );
$css -> add_property ( 'float' , 'right' );
$css -> set_selector ( '.regular-menu-logo .main-navigation:not(.navigation-stick):not(.mobile-header-navigation) .mobile-bar-items' );
$css -> add_property ( 'position' , 'relative' );
$css -> add_property ( 'float' , 'right' );
$css -> set_selector ( 'body[class*="nav-float-"].menu-logo-enabled:not(.sticky-menu-logo) .main-navigation .main-nav' );
$css -> add_property ( 'display' , 'block' );
// Navigation floating left.
$css -> set_selector ( '.sticky-menu-logo.nav-float-left .navigation-stick:not(.mobile-header-navigation) .menu-toggle,.menu-logo.nav-float-left .main-navigation:not(.mobile-header-navigation) .menu-toggle,.regular-menu-logo.nav-float-left .main-navigation:not(.navigation-stick):not(.mobile-header-navigation) .menu-toggle' );
$css -> add_property ( 'float' , 'left' );
$css -> stop_media_query ();
return $css -> css_output ();
}
add_action ( 'generate_inside_slideout_navigation' , 'generate_do_slideout_menu_close_button' );
/**
* Add a button inside the slideout nav to close it .
*
* @ since 1.8
*/
function generate_do_slideout_menu_close_button () {
$settings = wp_parse_args (
get_option ( 'generate_menu_plus_settings' , array () ),
generate_menu_plus_get_defaults ()
);
if ( 'inside' === $settings [ 'slideout_close_button' ] || 'overlay' === $settings [ 'slideout_menu_style' ] ) {
$svg_icon = '' ;
if ( function_exists ( 'generate_get_svg_icon' ) ) {
$svg_icon = generate_get_svg_icon ( 'pro-close' );
}
echo apply_filters ( 'generate_close_slideout_navigation_button' , sprintf (
'<button class="slideout-exit %3$s">%1$s <span class="screen-reader-text">%2$s</span></button>' ,
$svg_icon ,
esc_html__ ( 'Close' , 'gp-premium' ),
$svg_icon ? 'has-svg-icon' : ''
) );
}
}
add_action ( 'wp' , 'generate_menu_plus_remove_header' , 200 );
/**
* Remove our header if we ' re using the navigation as a header .
*
* @ since 1.8
*/
function generate_menu_plus_remove_header () {
$settings = wp_parse_args (
get_option ( 'generate_menu_plus_settings' , array () ),
generate_menu_plus_get_defaults ()
);
if ( $settings [ 'navigation_as_header' ] ) {
remove_action ( 'generate_header' , 'generate_construct_header' );
add_filter ( 'generate_navigation_location' , 'generate_set_navigation_location_as_header' );
}
}
/**
* Set our navigation location if we ' re using our navigation as the header .
*
* @ since 1.8
*/
function generate_set_navigation_location_as_header () {
return 'nav-below-header' ;
}
add_action ( 'generate_inside_navigation' , 'generate_do_navigation_branding' );
/**
* Add our navigation logo if set .
*
* @ since 1.8
*/
function generate_do_navigation_branding () {
$settings = wp_parse_args (
get_option ( 'generate_menu_plus_settings' , array () ),
generate_menu_plus_get_defaults ()
);
if ( ! function_exists ( 'generate_get_option' ) ) {
return ;
}
$logo = false ;
$sticky_logo = false ;
$site_title = false ;
if ( $settings [ 'navigation_as_header' ] && get_theme_mod ( 'custom_logo' ) ) {
$logo_url = wp_get_attachment_image_src ( get_theme_mod ( 'custom_logo' ), 'full' );
$logo_url = esc_url ( apply_filters ( 'generate_logo' , $logo_url [ 0 ] ) );
$retina_logo_url = esc_url ( apply_filters ( 'generate_retina_logo' , generate_get_option ( 'retina_logo' ) ) );
if ( $logo_url ) {
$attr = apply_filters ( 'generate_logo_attributes' , array (
'class' => 'header-image' ,
'alt' => esc_attr ( apply_filters ( 'generate_logo_title' , get_bloginfo ( 'name' , 'display' ) ) ),
'src' => $logo_url ,
'title' => esc_attr ( apply_filters ( 'generate_logo_title' , get_bloginfo ( 'name' , 'display' ) ) ),
) );
if ( '' !== $retina_logo_url ) {
$attr [ 'srcset' ] = $logo_url . ' 1x, ' . $retina_logo_url . ' 2x' ;
// Add dimensions to image if retina is set. This fixes a container width bug in Firefox.
if ( function_exists ( 'the_custom_logo' ) && get_theme_mod ( 'custom_logo' ) ) {
$data = wp_get_attachment_metadata ( get_theme_mod ( 'custom_logo' ) );
if ( ! empty ( $data ) ) {
$attr [ 'width' ] = $data [ 'width' ];
$attr [ 'height' ] = $data [ 'height' ];
}
}
}
$attr = array_map ( 'esc_attr' , $attr );
$html_attr = '' ;
foreach ( $attr as $name => $value ) {
$html_attr .= " $name = " . '"' . $value . '"' ;
}
// Print our HTML.
$logo = apply_filters ( 'generate_logo_output' , sprintf ( // WPCS: XSS ok, sanitization ok.
' < div class = " site-logo " >
< a href = " %1 $s " title = " %2 $s " rel = " home " >
< img % 3 $s />
</ a >
</ div > ' ,
esc_url ( apply_filters ( 'generate_logo_href' , home_url ( '/' ) ) ),
esc_attr ( apply_filters ( 'generate_logo_title' , get_bloginfo ( 'name' , 'display' ) ) ),
$html_attr
), $logo_url , $html_attr );
}
}
2020-05-04 15:57:08 +00:00
if ( 'false' !== $settings [ 'sticky_menu' ] && '' !== $settings [ 'sticky_navigation_logo' ] ) {
2020-04-07 13:03:04 +00:00
$sticky_logo = apply_filters ( 'generate_sticky_navigation_logo_output' , sprintf (
' < div class = " sticky-navigation-logo " >
< a href = " %1 $s " title = " %2 $s " rel = " home " >
< img src = " %3 $s " alt = " %2 $s " />
</ a >
</ div > ' ,
esc_url ( apply_filters ( 'generate_logo_href' , home_url ( '/' ) ) ),
esc_attr ( apply_filters ( 'generate_logo_title' , get_bloginfo ( 'name' , 'display' ) ) ),
esc_url ( $settings [ 'sticky_navigation_logo' ] )
) );
}
if ( $settings [ 'navigation_as_header' ] && ! generate_get_option ( 'hide_title' ) ) {
$site_title = apply_filters ( 'generate_site_title_output' , sprintf (
' <% 1 $s class = " main-title " itemprop = " headline " >
< a href = " %2 $s " rel = " home " >
% 3 $s
</ a >
</% 1 $s > ' ,
( is_front_page () && is_home () ) ? 'h1' : 'p' ,
esc_url ( apply_filters ( 'generate_site_title_href' , home_url ( '/' ) ) ),
get_bloginfo ( 'name' )
) );
}
if ( $logo || $sticky_logo || $site_title ) {
echo '<div class="navigation-branding">' ;
if ( $logo ) {
/**
* generate_before_logo hook .
*
* @ since 0.1
*/
do_action ( 'generate_before_logo' );
echo $logo ;
/**
* generate_after_logo hook .
*
* @ since 0.1
*/
do_action ( 'generate_after_logo' );
}
if ( $sticky_logo ) {
echo $sticky_logo ;
}
if ( $site_title ) {
echo $site_title ;
}
echo '</div>' ;
}
}
add_filter ( 'generate_mobile_menu_media_query' , 'generate_set_mobile_menu_breakpoint' );
/**
* Set the mobile menu breakpoint .
*
* @ since 1.8
*
* @ param string
* @ return string
*/
function generate_set_mobile_menu_breakpoint ( $breakpoint ) {
$settings = wp_parse_args (
get_option ( 'generate_menu_plus_settings' , array () ),
generate_menu_plus_get_defaults ()
);
// This setting shouldn't apply if the mobile header isn't on and we're using GP < 2.3.
if ( defined ( 'GENERATE_VERSION' ) && version_compare ( GENERATE_VERSION , '2.3-alpha.1' , '<' ) ) {
if ( 'enable' !== $settings [ 'mobile_header' ] ) {
return $breakpoint ;
}
}
$mobile_menu_breakpoint = $settings [ 'mobile_menu_breakpoint' ];
if ( '' !== $mobile_menu_breakpoint ) {
return '(max-width: ' . absint ( $mobile_menu_breakpoint ) . 'px)' ;
}
return $breakpoint ;
}
add_filter ( 'generate_not_mobile_menu_media_query' , 'generate_set_not_mobile_menu_breakpoint' );
/**
* Set the breakpoint when the mobile menu doesn ' t apply .
*
* @ since 1.8 . 3
*
* @ param string
* @ return string
*/
function generate_set_not_mobile_menu_breakpoint ( $breakpoint ) {
$settings = wp_parse_args (
get_option ( 'generate_menu_plus_settings' , array () ),
generate_menu_plus_get_defaults ()
);
// This setting shouldn't apply if the mobile header isn't on and we're using GP < 2.3.
if ( defined ( 'GENERATE_VERSION' ) && version_compare ( GENERATE_VERSION , '2.3-alpha.1' , '<' ) ) {
if ( 'enable' !== $settings [ 'mobile_header' ] ) {
return $breakpoint ;
}
}
$mobile_menu_breakpoint = $settings [ 'mobile_menu_breakpoint' ];
if ( '' !== $mobile_menu_breakpoint && is_int ( $mobile_menu_breakpoint ) ) {
return '(min-width: ' . ( absint ( $mobile_menu_breakpoint ) + 1 ) . 'px)' ;
}
return $breakpoint ;
}