', $output );
$output = str_replace( '{megamenu_final_width}', 'style="width:' . $wrapper_width . $background_image . ';"' . $data_bg . ' data-width="' . $wrapper_width . '"', $output );
$output = str_replace( '{megamenu_interior_width}', $megamenu_interior_width, $output );
$output = str_replace( '{fusion_all_widgets}', $this->total_num_of_widgets === $this->total_num_of_columns ? 'fusion-has-all-widgets' : '', $output );
$replacement = ( $this->total_num_of_columns > $this->max_num_of_columns ) ? ' fusion-megamenu-border' : '';
$output = str_replace( '{megamenu_border}', $replacement, $output );
foreach ( $this->submenu_matrix as $row => $columns ) {
$layout_columns = 12 / $columns;
$layout_columns = ( 5 === $columns ) ? 2 : $layout_columns;
$replacement = 'fusion-megamenu-row-columns-' . $columns;
$replacement .= ( ( $row - 1 ) * $this->max_num_of_columns + $columns < $this->total_num_of_columns ) ? ' fusion-megamenu-border' : '';
$output = str_replace( '{row_number_' . $row . '}', $replacement, $output );
$replacement = ( count( $this->submenu_matrix ) === $row ) ? '' : 'fusion-megamenu-border';
$output = str_replace( '{force_row_border_' . $row . '}', $replacement, $output );
$output = str_replace( '{current_row_' . $row . '}', 'fusion-megamenu-columns-' . $columns . ' col-lg-' . $layout_columns . ' col-md-' . $layout_columns . ' col-sm-' . $layout_columns, $output );
$output = str_replace( '{fusion_columns}', 'fusion-columns-' . $columns . ' columns-per-row-' . $columns, $output );
}
foreach ( $this->menu_megamenu_rowwidth_matrix as $row => $columns ) {
foreach ( $columns as $column => $column_width ) {
$weighted_width = ( 100 / $max_row_width * $column_width ) . '%';
$output = str_replace( '{column_width_' . $row . '_' . $column . '}', $weighted_width, $output );
}
}
// Regular ul close.
} else {
$output .= '';
}
}
/**
* Start element.
*
* @see Walker::start_el()
* @since 3.0.0
*
* @param string $output Passed by reference. Used to append additional content.
* @param object $item Menu item data object.
* @param int $depth Depth of menu item. Used for padding.
* @param stdClass $args The arguments.
* @param int $id Menu item ID.
*/
public function start_el( &$output, $item, $depth = 0, $args = [], $id = 0 ) {
$item_output = '';
$class_columns = '';
$menu_highlight_label = '';
$is_rtl = is_rtl();
$menu_icon_position = $this->args['menu_icon_position'];
$submenu_mode = $this->args['submenu_mode'];
$expand_method = $this->args['expand_method'];
$accordion_expand_method = $this->args['accordion_expand_method'];
$transition_type = $this->args['transition_type'];
$this->add_mega_menu_to_end = false;
$submenu_disallowed_special_items = [ 'fusion-search', 'fusion-woo-my-account', 'fusion-woo-cart' ];
/**
* Filters the arguments for a single nav menu item.
*
* @since 4.4.0
*
* @param stdClass $args An object of wp_nav_menu() arguments.
* @param WP_Post $item Menu item data object.
* @param int $depth Depth of menu item. Used for padding.
*/
$args = apply_filters( 'nav_menu_item_args', $args, $item, $depth );
if ( null === $item->menu_item_parent ) {
$item->menu_item_parent = '0';
}
if ( ! $this->top_level_menu_items_count && 'flyout' === $this->args['submenu_mode'] ) {
$menu_elements = wp_get_nav_menu_items(
$args->menu,
[
'meta_key' => '_menu_item_menu_item_parent', // phpcs:ignore WordPress.DB.SlowDBQuery
'meta_value' => '0', // phpcs:ignore WordPress.DB.SlowDBQuery
]
);
// Array of menu item types we don't consider as 'top level' menu items.
$exclude_menu_items = apply_filters( 'fusion_exclude_top_menu_items', [ 'wpml_ls_menu_item' ] );
if ( is_array( $menu_elements ) ) {
foreach ( $menu_elements as $key => $menu_element ) {
if ( isset( $menu_element->type ) && in_array( $menu_element->type, $exclude_menu_items, true ) ) {
unset( $menu_elements[ $key ] );
}
}
$this->top_level_menu_items_count = count( $menu_elements );
foreach ( $menu_elements as $menu_element ) {
if ( null === $menu_element->menu_item_parent ) {
$menu_element->menu_item_parent = '0';
}
}
}
}
// Set some vars.
$meta_data = get_post_meta( $item->ID );
$fusion_meta = ! empty( $meta_data['_menu_item_fusion_megamenu'][0] ) ? maybe_unserialize( $meta_data['_menu_item_fusion_megamenu'][0] ) : [];
$fusion_meta = apply_filters( 'avada_menu_meta', $fusion_meta, $item->ID );
$show_cart_contents = false;
$inline_search = false;
$search_dropdown = false;
$this->menu_style = isset( $fusion_meta['style'] ) && 0 === $depth ? $fusion_meta['style'] : '';
$this->menu_megamenu_icon = isset( $fusion_meta['icon'] ) ? $fusion_meta['icon'] : '';
$this->menu_megamenu_modal = isset( $fusion_meta['modal'] ) ? $fusion_meta['modal'] : '';
$this->menu_title_only = isset( $fusion_meta['icononly'] ) ? $fusion_meta['icononly'] : '';
$this->fusion_highlight_label = isset( $fusion_meta['highlight_label'] ) ? $fusion_meta['highlight_label'] : '';
$this->fusion_highlight_label_background = isset( $fusion_meta['highlight_label_background'] ) ? $fusion_meta['highlight_label_background'] : '';
$this->fusion_highlight_label_color = isset( $fusion_meta['highlight_label_color'] ) ? $fusion_meta['highlight_label_color'] : '';
$this->fusion_highlight_label_border_color = isset( $fusion_meta['highlight_label_border_color'] ) ? $fusion_meta['highlight_label_border_color'] : '';
// Non legacy mega menu selection.
$this->megamenu_select = isset( $fusion_meta['select'] ) && ! empty( $fusion_meta['select'] ) ? $fusion_meta['select'] : false;
$megamenu_no_children = false;
// Special case, mega menu with no children.
if ( $this->megamenu_select && ! $args->has_children ) {
// If mega menu and no children, hide caret.
$megamenu_no_children = true;
$args->has_children = true;
$this->add_mega_menu_to_end = true;
$item->classes[] = 'menu-item-has-children';
}
// Skip disallowed special items in submenu element.
if ( isset( $fusion_meta['special_link'] ) && in_array( $fusion_meta['special_link'], $submenu_disallowed_special_items, true ) && false !== strpos( $this->class_base, 'awb-submenu' ) ) {
return;
}
// Thumbnail is not outside of mega menu scope.
if ( ! empty( $fusion_meta['thumbnail'] ) ) {
$thumbnail_id = isset( $fusion_meta['thumbnail_id'] ) ? $fusion_meta['thumbnail_id'] : 0;
$thumbnail_data = fusion_library()->images->get_attachment_data_by_helper( $thumbnail_id, $fusion_meta['thumbnail'] );
if ( $thumbnail_data ) {
$this->menu_megamenu_thumbnail = '
';
} else {
$this->menu_megamenu_thumbnail = '
';
}
} else {
$this->menu_megamenu_thumbnail = '';
}
// Add the bg image markup for flyout menu items.
if ( 1 === $depth && 'flyout' === $this->args['submenu_mode'] && isset( $fusion_meta['background_image'] ) && '' !== $fusion_meta['background_image'] ) {
if ( $this->args['lazy_load'] ) {
$this->flyout_menu_bg_markup .= '';
} else {
$this->flyout_menu_bg_markup .= '';
}
}
if ( ! empty( $item->fusion_highlight_label ) ) {
$highlight_style = '';
if ( ! empty( $item->fusion_highlight_label_background ) ) {
$highlight_style .= 'background-color:' . $item->fusion_highlight_label_background . ';';
}
if ( ! empty( $item->fusion_highlight_label_border_color ) ) {
$highlight_style .= 'border-color:' . $item->fusion_highlight_label_border_color . ';';
}
if ( ! empty( $item->fusion_highlight_label_color ) ) {
$highlight_style .= 'color:' . $item->fusion_highlight_label_color . ';';
}
$menu_highlight_label = '
' . esc_html( $item->fusion_highlight_label ) . ' ';
}
// Megamenu is enabled.
if ( $this->args['disable_megamenu'] && ! $this->megamenu_select ) {
if ( 0 === $depth ) {
$this->menu_megamenu_status = isset( $fusion_meta['status'] ) ? $fusion_meta['status'] : 'disabled';
$this->menu_megamenu_width = isset( $fusion_meta['width'] ) ? $fusion_meta['width'] : '';
$allowed_columns = isset( $fusion_meta['columns'] ) ? $fusion_meta['columns'] : '';
if ( 'auto' !== $allowed_columns ) {
$this->max_num_of_columns = (int) $allowed_columns;
}
$this->num_of_columns = 0;
$this->total_num_of_columns = 0;
$this->total_num_of_widgets = 0;
$this->num_of_rows = 1;
$this->menu_megamenu_rowwidth_matrix = [];
$this->menu_megamenu_rowwidth_matrix[ $this->num_of_rows ] = [];
$this->menu_megamenu_background_image = isset( $fusion_meta['background_image'] ) ? $fusion_meta['background_image'] : '';
} elseif ( 1 === $depth ) {
$megamenu_column_background_image = isset( $fusion_meta['background_image'] ) ? $fusion_meta['background_image'] : '';
}
$this->menu_megamenu_title = isset( $fusion_meta['title'] ) ? $fusion_meta['title'] : '';
$this->menu_megamenu_widgetarea = isset( $fusion_meta['widgetarea'] ) ? $fusion_meta['widgetarea'] : '';
// Megamenu is disabled.
} else {
$this->menu_megamenu_status = 'disabled';
}
// We are inside a megamenu.
if ( 1 === $depth && 'enabled' === $this->menu_megamenu_status ) {
if ( isset( $fusion_meta['columnwidth'] ) && $fusion_meta['columnwidth'] ) {
$this->menu_megamenu_columnwidth = floatval( $fusion_meta['columnwidth'] ) . '%';
} else {
$this->menu_megamenu_columnwidth = '16.6666%';
if ( 'fullwidth' === $this->menu_megamenu_width && $this->max_num_of_columns ) {
$this->menu_megamenu_columnwidth = 100 / $this->max_num_of_columns . '%';
} elseif ( 1 === $this->max_num_of_columns ) {
$this->menu_megamenu_columnwidth = '100%';
}
}
$this->num_of_columns++;
$this->total_num_of_columns++;
// Check if we need to start a new row.
if ( $this->num_of_columns > $this->max_num_of_columns || $this->previous_column_was_100_percent ) {
$this->num_of_columns = 1;
$this->num_of_rows++;
$force_row_border = '';
if ( $this->previous_column_was_100_percent ) {
$this->previous_column_was_100_percent = false;
$force_row_border = ' {force_row_border_' . $this->num_of_rows . '}';
}
$output .= '
';
$link_closing = '';
$target = '';
$link_class = '';
if ( ! empty( $item->url ) && '#' !== $item->url && 'http://' !== $item->url ) {
$link_class = 'awb-justify-title';
if ( ! empty( $item->target ) ) {
$target = ' target="' . $item->target . '"';
}
if ( 'disabled' === $this->menu_megamenu_title ) {
$link_class .= ' fusion-megamenu-title-disabled';
$link = '';
$link_closing = ' ';
} else {
$link = '';
$link_closing = ' ';
}
if ( $this->menu_megamenu_widgetarea && is_active_sidebar( $this->menu_megamenu_widgetarea ) ) {
$this->total_num_of_widgets--;
}
}
// Check if we need to set an image.
$title_enhance = '';
if ( ! empty( $this->menu_megamenu_thumbnail ) ) {
$title_enhance = '';
} elseif ( ! empty( $this->menu_megamenu_icon ) ) {
$title_enhance = '';
} elseif ( 'disabled' === $this->menu_megamenu_title ) {
$title_enhance = '';
}
$heading = $link . $title_enhance . $title . $menu_highlight_label . $link_closing;
$menu_icon_right = ( ( ! $is_rtl && 'right' === $menu_icon_position ) || ( $is_rtl && 'left' === $menu_icon_position ) );
// If we have an icon or thumbnail and the position is not left, then change order.
if ( 0 === $depth && ( ! empty( $this->menu_megamenu_icon ) || ! empty( $this->menu_megamenu_thumbnail ) ) && $menu_icon_right ) {
$heading = $link . $title . $title_enhance . $link_closing;
}
if ( 'disabled' !== $this->menu_megamenu_title ) {
$item_output .= "';
} else {
$item_output .= $heading;
}
}
if ( $this->menu_megamenu_widgetarea && is_active_sidebar( $this->menu_megamenu_widgetarea ) ) {
$this->total_num_of_widgets++;
ob_start();
dynamic_sidebar( $this->menu_megamenu_widgetarea );
$item_output .= '';
}
$class_columns = ' {current_row_' . $this->num_of_rows . '}';
} elseif ( 2 === $depth && 'enabled' === $this->menu_megamenu_status && $this->menu_megamenu_widgetarea ) {
if ( is_active_sidebar( $this->menu_megamenu_widgetarea ) ) {
ob_start();
dynamic_sidebar( $this->menu_megamenu_widgetarea );
$item_output .= '';
}
} else {
// Regular link.
$atts = [
'title' => ! empty( $item->attr_title ) ? esc_attr( $item->attr_title ) : '',
'target' => ! empty( $item->target ) ? esc_attr( $item->target ) : '',
'rel' => ! empty( $item->xfn ) ? esc_attr( $item->xfn ) : '',
'href' => ! empty( $item->url ) ? esc_attr( $item->url ) : '',
'class' => [],
];
if ( 0 === $depth ) {
$atts['class'][] = $this->class_base . '__main-a';
if ( ! $this->menu_style ) {
$atts['class'][] = $this->class_base . '__main-a_regular';
} else {
$atts['class'][] = $this->class_base . '__main-a_button';
}
} else {
$atts['class'][] = $this->class_base . '__sub-a';
}
if ( isset( $fusion_meta['special_link'] ) && 'awb-user-logout' === $fusion_meta['special_link'] ) {
$atts['href'] = esc_url( wp_logout_url() );
$atts['class'][] = 'awb-logout-menu-item-link';
}
// Add off canvas menu item.
if ( isset( $fusion_meta['special_link'] ) && 'awb-off-canvas-menu-trigger' === $fusion_meta['special_link'] && class_exists( 'AWB_Off_Canvas_Front_End' ) && ! empty( $fusion_meta['off_canvas_id'] ) && class_exists( 'AWB_Off_Canvas' ) && false !== AWB_Off_Canvas::is_enabled() ) {
AWB_Off_Canvas_Front_End::add_off_canvas_to_stack( $fusion_meta['off_canvas_id'] );
$atts['href'] = '#awb-oc__' . $fusion_meta['off_canvas_id'];
$atts['class'][] = 'awb-oc-menu-item-link';
}
if ( 'icononly' === $this->menu_title_only && 0 === $depth ) {
$atts['class'][] = $this->class_base . '__main-a_icon-only';
}
if ( ( ! empty( $this->menu_megamenu_icon ) || ! empty( $this->menu_megamenu_thumbnail ) || $item->description ) && ! $this->menu_style && 0 === $depth ) {
$atts['class'][] = 'fusion-flex-link';
if ( 'top' === $menu_icon_position || 'bottom' === $menu_icon_position ) {
$atts['class'][] = 'fusion-flex-column';
}
}
if ( 0 === $depth && $item->description ) {
$atts['class'][] = $this->class_base . '__has-description';
}
if ( '_blank' === $atts['target'] ) {
$atts['rel'] = ( ( $atts['rel'] ) ? $atts['rel'] . ' noopener noreferrer' : 'noopener noreferrer' );
}
if ( '' !== $this->menu_megamenu_modal ) {
$atts['data-toggle'] = 'modal';
$atts['data-target'] = '.' . $this->menu_megamenu_modal;
}
$atts['class'] = implode( ' ', $atts['class'] );
$atts['aria-current'] = $item->current ? 'page' : '';
/**
* Filters the HTML attributes applied to a menu item's anchor element.
*
* @since 3.6.0
* @since 4.1.0 The `$depth` parameter was added.
*
* @param array $atts {
* The HTML attributes applied to the menu item's `` element, empty strings are ignored.
*
* @type string $title Title attribute.
* @type string $target Target attribute.
* @type string $rel The rel attribute.
* @type string $href The href attribute.
* }
* @param WP_Post $item The current menu item.
* @param stdClass $args An object of wp_nav_menu() arguments.
* @param int $depth Depth of menu item. Used for padding.
*/
$atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args, $depth );
$attributes = '';
foreach ( $atts as $attr => $value ) {
if ( ! empty( $value ) ) {
$value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );
$attributes .= ' ' . $attr . '="' . $value . '"';
}
}
$item_output .= $args->before . ' ';
// Check if we need to set an image.
$icon_wrapper_class = $this->class_base . '__i';
if ( 0 === $depth ) {
$icon_wrapper_class .= ' ' . $this->class_base . '__i_main';
if ( $is_rtl && 'left' === $this->args['menu_icon_position'] ) {
$icon_wrapper_class .= ' ' . $this->class_base . '__main-i_left';
}
if ( $this->menu_style ) {
$icon_wrapper_class = ( $is_rtl ) ? 'button-icon-divider-right' : 'button-icon-divider-left';
}
} else {
$icon_wrapper_class .= ' ' . $this->class_base . '__i_sub';
}
$icon = '';
if ( ! empty( $this->menu_megamenu_thumbnail ) ) {
$icon = '';
} elseif ( ! empty( $this->menu_megamenu_icon ) ) {
$icon = '';
} elseif ( 0 !== $depth && 'enabled' === $this->menu_megamenu_status ) {
$icon = '';
}
if ( isset( $fusion_meta['special_link'] ) && 'awb-off-canvas-menu-trigger' === $fusion_meta['special_link'] && class_exists( 'AWB_Off_Canvas_Front_End' ) && ! empty( $fusion_meta['off_canvas_id'] ) && class_exists( 'AWB_Off_Canvas' ) && false !== AWB_Off_Canvas::is_enabled() ) {
if ( '' !== $icon ) {
$icon_wrapper_class = 'awb-oc-close-icon';
$is_builder = ( function_exists( 'fusion_is_preview_frame' ) && fusion_is_preview_frame() ) || ( function_exists( 'fusion_is_builder_frame' ) && fusion_is_builder_frame() );
if ( $this->menu_style && ! $is_builder ) {
$icon_wrapper_class .= ( $is_rtl ) ? ' button-icon-divider-right' : ' button-icon-divider-left';
} else {
$icon_wrapper_class .= ' ' . $this->class_base . '__i ' . $this->class_base . '__i_main';
}
$icon .= ' ';
}
}
$classes = '';
// Check if we have a menu button.
if ( 0 === $depth ) {
$classes = ! $item->description ? 'menu-text' : 'menu-text menu-text_with-desc';
if ( $this->menu_style ) {
$classes .= ' fusion-button button-default ' . str_replace( 'fusion-', '', $this->menu_style );
// Button should have 3D effect.
if ( '3d' === $this->args['button_type'] ) {
$classes .= ' button-3d';
}
}
}
$title = $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
/**
* Filters a menu item's title.
*
* @since 4.4.0
*
* @param string $title The menu item's title.
* @param WP_Post $item The current menu item.
* @param stdClass $args An object of wp_nav_menu() arguments.
* @param int $depth Depth of menu item. Used for padding.
*/
$title = apply_filters( 'nav_menu_item_title', $title, $item, $args, $depth );
// If we are not using a button and have a description, then add that to the title.
if ( $item->description && ! $this->menu_style ) {
$title .= '' . $item->description . ' ';
}
if ( ! empty( $menu_highlight_label ) ) {
$title .= $menu_highlight_label;
}
if ( false !== strpos( $icon, 'button-icon-divider-left' ) ) {
$title = '' . $title . ' ';
} elseif ( false !== strpos( $icon, 'button-icon-divider-right' ) ) {
$title = '' . $title . ' ';
} elseif ( 'icononly' === $this->menu_title_only && 0 === $depth ) {
$title = '';
}
$menu_icon_right = ( ( ! $is_rtl && 'right' === $menu_icon_position ) || ( $is_rtl && 'left' === $menu_icon_position ) );
$opening_span = ( $classes ) ? '' : '';
// If we have an icon or thumbnail and the position is not left, then change order.
if (
( ! empty( $this->menu_megamenu_icon ) || ! empty( $this->menu_megamenu_thumbnail ) ) && ( $menu_icon_right || 'bottom' === $menu_icon_position ) && ! $this->menu_style && 0 === $depth ) {
$item_output = $item_output . $opening_span . $title . ' ' . $icon;
} elseif ( $this->menu_style || 0 !== $depth ) {
$item_output = $item_output . $opening_span . $icon . $title . ' ';
} else {
$item_output = $item_output . $icon . $opening_span . $title . '';
}
// For top header and left side header add the caret icon at the end.
if ( $args->has_children ) {
$item_output .= 'hover' === $expand_method && ! $this->menu_style ? '' : '';
$item_output .= ' ' . $args->after;
// Set different classes based on what its needed for.
$caret_class = 'click' === $expand_method && ! $this->menu_style ? $this->class_base . '__open-nav-submenu_mobile ' . $this->class_base . '__open-nav-submenu_click' : $this->class_base . '__open-nav-submenu_mobile';
if ( 0 === $depth ) {
$caret_class .= ' ' . $this->class_base . '__open-nav-submenu_main';
if ( $this->args['click_spacing'] ) {
$caret_class .= ' ' . $this->class_base . '__open-nav-submenu_needs-spacing';
}
} else {
$caret_class .= ' ' . $this->class_base . '__open-nav-submenu_sub';
}
if ( true === $megamenu_no_children ) {
$caret_class .= ' ' . $this->class_base . '__megamenu_no_children';
}
$expanded = 'false';
if ( 'accordion' === $submenu_mode && 'always' === $accordion_expand_method ) {
$expanded = 'true';
}
/* Translators: The menu item title. */
$item_output .= ' ';
} else {
$item_output .= '' . $args->after;
}
// No more pseudo elements, so we need markup for sub arrow.
if ( 0 === $depth && $args->has_children && false !== strpos( $this->args['arrows'], 'submenu' ) ) {
$item_output .= ' ';
}
if ( isset( $fusion_meta['special_link'] ) && 'fusion-woo-cart' === $fusion_meta['special_link'] && class_exists( 'WooCommerce' ) ) {
// Construct menu item title.
$menu_item_class = ! $item->description ? 'menu-text' : 'menu-text menu-text_with-desc';
$menu_item_class = 'icononly' === $this->menu_title_only ? $menu_item_class . ' menu-text_no-desktop' : $menu_item_class;
$woo_item_title = '';
$woo_item_icon = '';
$show_counter = ( isset( $fusion_meta['show_woo_cart_counter'] ) && 'yes' === $fusion_meta['show_woo_cart_counter'] ) ? true : false;
$show_empty_counter = ( ! isset( $fusion_meta['show_empty_woo_cart_counter'] ) || 'yes' === $fusion_meta['show_empty_woo_cart_counter'] ) ? true : false;
$counter_type = ( ! isset( $fusion_meta['cart_counter_display'] ) ) ? 'inline' : $fusion_meta['cart_counter_display'];
$show_cart_contents = ( isset( $fusion_meta['show_woo_cart_contents'] ) && 'yes' === $fusion_meta['show_woo_cart_contents'] ) ? true : false;
$counter_style = '';
if ( '' !== $fusion_meta['icon'] ) {
$woo_item_icon = ' ';
if ( $menu_icon_right || 'bottom' === $menu_icon_position ) {
$woo_item_title = $woo_item_title . $woo_item_icon;
} else {
$woo_item_title = $woo_item_icon . $woo_item_title;
}
}
$woo_item_after_title_inside = '';
$woo_item_after_title = '';
if ( true === $show_cart_contents ) {
if ( 'hover' === $expand_method ) {
$woo_item_after_title_inside = '';
} else {
$caret_class = 'click' === $expand_method ? $this->class_base . '__open-nav-submenu_mobile ' . $this->class_base . '__open-nav-submenu_click' : $this->class_base . '__open-nav-submenu_mobile';
if ( 0 === $depth ) {
$caret_class .= ' ' . $this->class_base . '__open-nav-submenu_main';
} else {
$caret_class .= ' ' . $this->class_base . '__open-nav-submenu_sub';
}
if ( $this->args['click_spacing'] ) {
$caret_class .= ' ' . $this->class_base . '__open-nav-submenu_needs-spacing';
}
$woo_item_after_title .= ' ';
}
}
if ( $show_counter ) {
if ( ! empty( $item->fusion_highlight_label_background ) ) {
$counter_style .= 'background-color:' . $item->fusion_highlight_label_background . ';';
}
if ( ! empty( $item->fusion_highlight_label_border_color ) ) {
$counter_style .= 'border-color:' . $item->fusion_highlight_label_border_color . ';';
}
if ( ! empty( $item->fusion_highlight_label_color ) ) {
$counter_style .= 'color:' . $item->fusion_highlight_label_color . ';';
}
}
$item_output = fusion_menu_element_add_woo_cart_to_widget_html(
[
'link_classes' => $atts['class'],
'text_title' => $woo_item_title,
'after_title_inside' => $woo_item_after_title_inside,
'after_title' => $woo_item_after_title,
'show_counter' => $show_counter,
'counter_style' => $counter_style,
]
);
$item->classes = isset( $item->classes ) ? (array) $item->classes : [];
if ( isset( $fusion_meta['show_woo_cart_contents'] ) && 'yes' === $fusion_meta['show_woo_cart_contents'] ) {
if ( false !== strpos( $this->args['arrows'], 'submenu' ) ) {
$item_output .= ' ';
}
$item_output .= avada_menu_element_woo_cart();
if ( is_object( WC()->cart ) && 0 < WC()->cart->get_cart_contents_count() ) {
$item->classes[] = 'menu-item-has-children';
} else {
$item->classes[] = 'empty-cart';
}
}
// Set menu item classes.
$item->classes[] = 'fusion-widget-cart';
$item->classes[] = 'fusion-menu-cart';
$item->classes[] = 'avada-main-menu-cart';
if ( false === $show_empty_counter ) {
$item->classes[] = 'fusion-menu-cart-hide-empty-counter';
}
if ( 'badge' === $counter_type ) {
$item->classes[] = 'fusion-counter-badge';
}
if ( ! $show_counter && is_object( WC()->cart ) && 0 < WC()->cart->get_cart_contents_count() ) {
$item->classes[] = ' fusion-active-cart-icon';
}
}
if ( isset( $fusion_meta['special_link'] ) && 'fusion-woo-my-account' === $fusion_meta['special_link'] && class_exists( 'WooCommerce' ) ) {
// Used as a flag for sub menu arrows.
$show_cart_contents = true;
// Construct menu item title.
$menu_item_class = ! $item->description ? 'menu-text' : 'menu-text menu-text_with-desc';
$menu_item_class = 'icononly' === $this->menu_title_only ? $menu_item_class . ' menu-text_no-desktop' : $menu_item_class;
$woo_item_title = '';
$woo_item_icon = '';
if ( '' !== $fusion_meta['icon'] ) {
$woo_item_icon = ' ';
if ( $menu_icon_right || 'bottom' === $menu_icon_position ) {
$woo_item_title = $woo_item_title . $woo_item_icon;
} else {
$woo_item_title = $woo_item_icon . $woo_item_title;
}
}
$menu_id = '';
if ( $args->menu_id ) {
$menu_id = $args->menu_id;
} elseif ( is_string( $args->menu ) ) {
$menu_id = uniqid( $args->menu . '-' );
} elseif ( isset( $args->menu->slug ) ) {
$menu_id = uniqid( $args->menu->slug . '-' );
}
$woo_args = [
'menu_item_content' => $woo_item_title,
'link_classes' => $atts['class'],
'after_content_inside' => '',
'after_content' => '',
'menu_id' => $menu_id,
];
if ( 'hover' === $expand_method ) {
$woo_args['after_content_inside'] = '';
} else {
$caret_class = 'click' === $expand_method ? $this->class_base . '__open-nav-submenu_mobile ' . $this->class_base . '__open-nav-submenu_click' : $this->class_base . '__open-nav-submenu_mobile';
if ( 0 === $depth ) {
$caret_class .= ' ' . $this->class_base . '__open-nav-submenu_main';
} else {
$caret_class .= ' ' . $this->class_base . '__open-nav-submenu_sub';
}
if ( $this->args['click_spacing'] ) {
$caret_class .= ' ' . $this->class_base . '__open-nav-submenu_needs-spacing';
}
$woo_args['after_content'] = ' ';
}
$woo_args['arrows'] = false !== strpos( $this->args['arrows'], 'submenu' );
$item_output = $this->woo_my_account( $woo_args );
// Set menu item classes.
$item->classes = isset( $item->classes ) ? (array) $item->classes : [];
if ( is_account_page() ) {
$item->classes[] = 'current-menu-item';
$item->classes[] = 'current_page_item';
}
$item->classes[] = 'menu-item-has-children';
$item->classes[] = 'avada-menu-login-box';
}
if ( isset( $fusion_meta['special_link'] ) && 'fusion-search' === $fusion_meta['special_link'] ) {
$fusion_meta['searchform_mode'] = isset( $fusion_meta['searchform_mode'] ) ? $fusion_meta['searchform_mode'] : 'inline';
$item_title_esc = esc_attr( $item->title );
$icon_only_class = '';
if ( 'icononly' === $this->menu_title_only ) {
$icon_only_class = ' ' . $this->class_base . '__main-a_icon-only';
}
switch ( $fusion_meta['searchform_mode'] ) {
case 'dropdown':
$search_dropdown = true;
$item->classes = isset( $item->classes ) ? (array) $item->classes : [];
$item->classes[] = 'menu-item-has-children';
$item->classes[] = 'custom-menu-search';
$item->classes[] = $this->class_base . '__li_search-dropdown';
$item_output = '';
if ( 'icononly' !== $this->menu_title_only ) {
$item_output .= '';
}
if ( ! empty( $this->menu_megamenu_icon ) ) {
$item_output .= ' ';
}
$item_output .= ' ';
$caret_class = 'click' === $expand_method ? $this->class_base . '__open-nav-submenu_mobile ' . $this->class_base . '__open-nav-submenu_click' : $this->class_base . '__open-nav-submenu_mobile';
if ( 0 === $depth ) {
$caret_class .= ' ' . $this->class_base . '__open-nav-submenu_main';
} else {
$caret_class .= ' ' . $this->class_base . '__open-nav-submenu_sub';
}
$item_output .= ' ';
if ( false !== strpos( $this->args['arrows'], 'submenu' ) ) {
$item_output .= ' ';
}
$item_output .= '' . get_search_form( false ) . ' ';
break;
case 'overlay':
$item->classes = isset( $item->classes ) ? (array) $item->classes : [];
$item->classes[] = 'custom-menu-search';
$item->classes[] = $this->class_base . '__li_search-overlay';
$item_output = ' ';
$searchform_markup = get_search_form( false );
$searchform_markup .= '
';
$searchform_markup .= ' ';
// TODO: why is this added here rather than just in the element?
if ( class_exists( 'FusionSC_Menu' ) ) {
FusionSC_Menu::$overlay_search_markup .= '' . $searchform_markup . '
';
}
// This is here for mobile menus. DO NOT REMOVE.
$item_output .= '' . $searchform_markup . '
';
break;
default:
$inline_search = true;
$item->classes[] = $this->class_base . '__li_search-inline';
$item_output = '' . get_search_form( false ) . '
';
}
}
if ( isset( $fusion_meta['special_link'] ) && 'fusion-sliding-bar-toggle' === $fusion_meta['special_link'] ) {
$sliding_bar_label = esc_attr__( 'Toggle Sliding Bar', 'Avada' );
$item->classes[] = $this->class_base . '__sliding-li';
// Construct menu item title.
$menu_item_class = ! $item->description ? 'menu-text' : 'menu-text menu-text_with-desc';
$menu_item_class = 'icononly' === $this->menu_title_only ? $menu_item_class . ' menu-text_no-desktop' : $menu_item_class;
$slidingbar_title = '';
$slidingbar_icon = '';
if ( '' !== $fusion_meta['icon'] ) {
$slidingbar_icon = ' ';
if ( $menu_icon_right || 'bottom' === $menu_icon_position ) {
$slidingbar_title = $slidingbar_title . $slidingbar_icon;
} else {
$slidingbar_title = $slidingbar_icon . $slidingbar_title;
}
}
$atts['title'] = $sliding_bar_label;
$atts['href'] = '#';
$atts['class'] .= ' ' . $this->class_base . '__sliding-toggle';
$atts['aria-label'] = $sliding_bar_label;
$atts['data-title'] = $sliding_bar_label;
unset( $atts['target'] );
unset( $atts['rel'] );
$attributes = '';
foreach ( $atts as $attr => $value ) {
if ( ! empty( $value ) ) {
$value = esc_attr( $value );
$attributes .= ' ' . $attr . '="' . $value . '"';
}
}
$item_output = '' . $slidingbar_title . ' ';
}
}
// Check if we need to apply a divider.
if ( 'enabled' !== $this->menu_megamenu_status && ( ( 0 === strcasecmp( $item->attr_title, 'divider' ) ) || ( 0 === strcasecmp( $item->title, 'divider' ) ) ) ) {
$output .= '';
} else {
$class_names = '';
$column_width = '';
$style = '';
$custom_class_data = '';
$classes = empty( $item->classes ) ? [] : (array) $item->classes;
$data_bg = '';
$classes[] = 'menu-item-' . $item->ID;
$class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args, $depth ) );
$class_names .= ' ' . $this->class_base . '__li';
if ( 0 === $depth ) {
$class_names .= ' ' . $this->class_base . '__main-li';
if ( ! $this->menu_style && ! $inline_search ) {
$class_names .= ' ' . $this->class_base . '__main-li_regular';
}
}
// We set has children so further checks act as though it has children when cart content is enabled.
if ( $show_cart_contents || $search_dropdown ) {
$args->has_children = true;
}
// Arrows are all on top level.
if ( 0 === $depth && ! $inline_search ) {
$has_arrow = false;
// When active is turned on, it also enables hover even if no children.
if ( false !== strpos( $this->args['arrows'], 'active' ) && ! $this->menu_style ) {
$class_names .= ' ' . $this->class_base . '__main-li_with-active-arrow ' . $this->class_base . '__main-li_with-main-arrow';
$has_arrow = true;
} elseif ( $args->has_children && false !== strpos( $this->args['arrows'], 'main' ) && ! $this->menu_style ) {
$class_names .= ' ' . $this->class_base . '__main-li_with-main-arrow';
$has_arrow = true;
}
if ( $args->has_children && false !== strpos( $this->args['arrows'], 'submenu' ) ) {
$class_names .= ' ' . $this->class_base . '__main-li_with-sub-arrow';
$has_arrow = true;
}
if ( $has_arrow ) {
$class_names .= ' ' . $this->class_base . '__main-li_with-arrow';
if ( $this->args['arrow_border'] ) {
$class_names .= ' ' . $this->class_base . '__main-li_active-arrow-border';
}
}
}
if ( 0 === $depth && $args->has_children ) {
$class_names .= ( 'enabled' === $this->menu_megamenu_status ) ? ' fusion-megamenu-menu' : '';
$class_names .= ( 'enabled' === $this->menu_megamenu_status ) ? ' {fusion_all_widgets}' : '';
}
if ( 0 === $depth && $this->menu_style ) {
$class_names .= ' ' . $this->class_base . '__li_button';
}
// Add class to last element in flyout menus.
if ( 0 === $depth && 'flyout' === $this->args['submenu_mode'] && $this->top_level_menu_items_count === $this->no_of_top_level_items_displayed + 1 ) {
$class_names .= ' fusion-flyout-menu-item-last';
}
if ( 0 === $depth && 'flyout' === $this->args['submenu_mode'] && ( empty( $item->url ) || '#' === $item->url || 'http://' === $item->url ) ) {
$class_names .= ' awb-flyout-top-level-no-link';
}
// Regular submenu items.
if ( 0 < $depth && 'enabled' !== $this->menu_megamenu_status ) {
$class_names .= ' ' . $this->class_base . '__sub-li';
}
if ( 1 === $depth && 'enabled' === $this->menu_megamenu_status ) {
$class_names .= ' fusion-megamenu-submenu';
if ( 'disabled' === $this->menu_megamenu_title ) {
$class_names .= ' fusion-megamenu-submenu-notitle';
}
if ( isset( $item->url ) && '#' !== $item->url && '' !== $item->url ) {
$class_names .= ' menu-item-has-link';
}
if ( ! empty( $megamenu_column_background_image ) ) {
if ( $this->args['lazy_load'] ) {
$class_names .= ' lazyload';
$data_bg = ' data-bg="' . $megamenu_column_background_image . '"';
} else {
$style .= 'background-image: url(' . $megamenu_column_background_image . ');';
}
}
if ( 'fullwidth' !== $this->menu_megamenu_width ) {
$style .= 'width:{column_width_' . $this->num_of_rows . '_' . $this->num_of_columns . '};';
}
}
if ( isset( $item->classes[0] ) && ! empty( $item->classes[0] ) ) {
$custom_class_data = ' data-classes="' . $item->classes[0] . '"';
}
$class_names = $class_names ? ' class="' . esc_attr( $class_names ) . $class_columns . '"' : '';
$style = $style ? ' style="' . esc_attr( $style ) . '"' : '';
$id = apply_filters( 'nav_menu_item_id', 'menu-item-' . $item->ID, $item, $args );
$id = $id ? ' id="' . esc_attr( $id ) . '"' : '';
$data_id = ( 0 === $depth || ( 'flyout' === $this->args['submenu_mode'] && isset( $fusion_meta['background_image'] ) && '' !== $fusion_meta['background_image'] ) ) ? ' data-item-id="' . $item->ID . '"' : '';
$output .= ' ';
// Transition markup only used on main menu level.
if ( 0 === $depth && ! $this->menu_style ) {
$output .= ' ';
}
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
}
}
/**
* End Element.
*
* @see Walker::end_el()
*
* @param string $output Passed by reference. Used to append additional content.
* @param object $item Page data object. Not used.
* @param int $depth Depth of page. Not Used.
* @param array $args Not used.
*/
public function end_el( &$output, $item, $depth = 0, $args = [] ) {
if ( $this->add_mega_menu_to_end && ! FusionBuilder()->mega_menu_data['is_rendering'] ) {
$output .= $this->render_megamenu();
}
$output .= ' ';
if ( null === $item->menu_item_parent ) {
$item->menu_item_parent = '0';
}
if ( '0' === $item->menu_item_parent ) {
$this->no_of_top_level_items_displayed++;
}
// Add the bg image markup for flyout menu items.
if ( 0 === $depth && 'flyout' === $this->args['submenu_mode'] && $this->flyout_menu_bg_markup && $this->top_level_menu_items_count === $this->no_of_top_level_items_displayed ) {
$output .= '';
}
}
/**
* Traverse elements to create list from elements.
*
* Display one element if the element doesn't have any children otherwise,
* display the element and its children. Will only traverse up to the max
* depth and no ignore elements under that depth.
*
* This method shouldn't be called directly, use the walk() method instead.
*
* @see Walker::start_el()
* @since 2.5.0
*
* @param object $element Data object.
* @param array $children_elements List of elements to continue traversing.
* @param int $max_depth Max depth to traverse.
* @param int $depth Depth of current element.
* @param array $args The arguments.
* @param string $output Passed by reference. Used to append additional content.
* @return null Null on failure with no changes to parameters.
*/
public function display_element( $element, &$children_elements, $max_depth, $depth, $args, &$output ) {
if ( ! $element ) {
return;
}
$id_field = $this->db_fields['id'];
// Display this element.
if ( is_object( $args[0] ) ) {
$args[0]->has_children = ! empty( $children_elements[ $element->$id_field ] );
}
parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
}
/**
* Menu Fallback
* =============
* If this function is assigned to the wp_nav_menu's fallback_cb variable
* and a manu has not been assigned to the theme location in the WordPress
* menu manager the function with display nothing to a non-logged in user,
* and will add a link to the WordPress menu manager if logged in as an admin.
*
* @param array $args passed from the wp_nav_menu function.
*/
public static function fallback( $args ) {
if ( current_user_can( 'manage_options' ) ) {
return null;
}
}
/**
* Add woocommerce cart to main navigation or top navigation.
*
* @param array $args Arguments for the WP menu.
* @return string
*/
public function woo_my_account( $args ) {
$output = '';
if ( class_exists( 'WooCommerce' ) ) {
$woo_account_page_link = wc_get_page_permalink( 'myaccount' );
if ( $woo_account_page_link ) {
$output .= '' . $args['menu_item_content'];
$output .= $args['after_content_inside'] . ' ' . $args['after_content'];
if ( $args['arrows'] ) {
$output .= ' ';
}
if ( ! is_user_logged_in() ) {
$referer = fusion_get_referer();
$referer = ( $referer ) ? $referer : '';
$output .= '';
if ( isset( $_GET['login'] ) && 'failed' === $_GET['login'] ) { // phpcs:ignore WordPress.Security.NonceVerification
$output .= '' . esc_html__( 'Login failed, please try again.', 'Avada' ) . '
';
}
$output .= '';
$output .= ' ';
} else {
$account_endpoints = wc_get_account_menu_items();
unset( $account_endpoints['dashboard'] );
$output .= '';
foreach ( $account_endpoints as $endpoint => $label ) {
$active_classes = ( is_wc_endpoint_url( $endpoint ) ) ? ' current-menu-item current_page_item' : '';
$output .= '';
$output .= '' . esc_html( $label ) . ' ';
$output .= ' ';
}
$output .= ' ';
}
}
}
return $output;
}
}
/* Omit closing PHP tag to avoid "Headers already sent" issues. */