', $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 );
}
}
} 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();
$header_layout = $this->args['header_layout'];
$header_position = $this->args['header_position'];
$menu_icon_position = $this->args['menu_icon_position'];
$menu_display_dropdown_indicator = $this->args['menu_display_dropdown_indicator'];
$fb_menu_element = $this->args['fb_menu_element'];
$expand_method = $this->args['expand_method'];
$menu_highlight_style = $this->args['menu_highlight_style'];
$transition_type = $this->args['transition_type'];
/**
* 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 ) {
if ( 'v6' === $header_layout || 'v7' === $header_layout || ( $fb_menu_element && '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';
}
}
}
}
if ( 'v6' === $header_layout || 'v7' === $header_layout ) {
$is_search_icon_enabled = (int) $this->args['main_nav_search_icon'];
$is_cart_icon_enabled = (int) $this->args['woocommerce_cart_link_main_nav'];
$is_my_account_menu_enabled = (int) $this->args['woocommerce_acc_link_main_nav'];
$is_sliding_bar_icon_enabled = (int) 'menu' === $this->args['slidingbar_toggle_style'] && $this->args['slidingbar_widgets'];
if ( 'v7' === $header_layout ) {
$this->top_level_menu_items_count += $is_search_icon_enabled + $is_cart_icon_enabled + $is_my_account_menu_enabled + $is_sliding_bar_icon_enabled;
if ( 0 === $this->top_level_menu_items_count ) {
$this->middle_logo_menu_break_point = $this->top_level_menu_items_count / 2;
} else {
$this->middle_logo_menu_break_point = ceil( $this->top_level_menu_items_count / 2 );
if ( $is_search_icon_enabled || $is_cart_icon_enabled || $is_sliding_bar_icon_enabled ) {
$this->middle_logo_menu_break_point = floor( $this->top_level_menu_items_count / 2 );
}
}
$this->middle_logo_menu_break_point = apply_filters( 'avada_middle_logo_menu_break_point', $this->middle_logo_menu_break_point );
}
}
}
// 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 );
// Skip special links if old menu setup.
if ( ! $fb_menu_element && isset( $fusion_meta['special_link'] ) && '' !== $fusion_meta['special_link'] ) {
return '';
}
$this->menu_style = isset( $fusion_meta['style'] ) ? $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'] : '';
// Add the bg image markup for flyout menu items.
if ( ( 0 === $depth && 'v6' === $header_layout || ( $fb_menu_element && '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 = '';
}
// Megamenu is enabled.
if ( $this->args['disable_megamenu'] && 'top_navigation' !== $args->theme_location ) {
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'] : '';
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 = '
![' . $thumbnail_data['title'] . ' ' . $thumbnail_data['alt'] . '](' . $thumbnail_data['url'] . ')
';
} else {
$this->menu_megamenu_thumbnail = '

';
}
} else {
$this->menu_megamenu_thumbnail = '';
}
// 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 {
$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 ( 'v7' === $header_layout && '0' === $item->menu_item_parent ) {
$atts['class'][] = 'fusion-top-level-link';
}
if ( 'icononly' === $this->menu_title_only && 0 === $depth ) {
$atts['class'][] = 'fusion-icon-only-link';
}
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';
}
}
$atts['class'][] = 'fusion-' . $menu_highlight_style . '-highlight';
if ( ! empty( $menu_highlight_label ) ) {
$atts['class'][] = 'fusion-has-highlight-label';
}
if ( 0 === $depth && $item->description ) {
$atts['class'][] = 'fusion-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'] );
/**
* 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 . '';
// For right side header add the caret icon at the beginning.
if ( $args->has_children && ( ( 'parent' === $menu_display_dropdown_indicator && 0 === $depth ) || 'parent_child' === $menu_display_dropdown_indicator ) && 'v6' !== $header_layout && ( 'right' === $header_position && ! $is_rtl || 'left' === $header_position && $is_rtl ) && ! $this->menu_style ) {
$item_output .= ' ';
}
// Check if we need to set an image.
$icon_wrapper_class = 'fusion-megamenu-icon';
if ( 0 === $depth ) {
if ( $is_rtl && 'left' === $this->args['menu_icon_position'] ) {
$icon_wrapper_class .= ' fusion-megamenu-icon-left';
}
if ( $this->menu_style ) {
$icon_wrapper_class = ( $is_rtl ) ? 'button-icon-divider-right' : 'button-icon-divider-left';
}
}
$icon = '';
// If its a side header, make sure icons are fixed size.
if ( ! empty( $this->menu_megamenu_icon ) && 'top' !== $header_position ) {
$this->menu_megamenu_icon .= ' fa-fw';
}
if ( ! empty( $this->menu_megamenu_thumbnail ) && 'enabled' === $this->menu_megamenu_status ) {
$icon = '';
} elseif ( ! empty( $this->menu_megamenu_icon ) ) {
$icon = '';
} elseif ( 0 !== $depth && 'enabled' === $this->menu_megamenu_status ) {
$icon = '';
}
$classes = '';
// Check if we have a menu button.
if ( 0 === $depth ) {
$classes = 'menu-text';
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 top level, not using a button and have a description, then add that to the title.
if ( $item->description && ( 0 === $depth || true === $this->args['fb_menu_element'] ) && ! $this->menu_style ) {
$title .= '';
}
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 = '';
}
// SVG creation for menu item hover/active.
if ( ! $this->args['disable_highlight_arrows'] && 0 === $depth && ( ! $this->menu_style || $args->has_children ) ) {
$title = apply_filters( 'avada_menu_arrow_hightlight', $title, $args->has_children );
}
$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 && ( ( 'parent' === $menu_display_dropdown_indicator && 0 === $depth ) || 'parent_child' === $menu_display_dropdown_indicator ) && 'v6' !== $header_layout && ( ( 'right' !== $header_position && ! $is_rtl ) || ( 'left' !== $header_position && $is_rtl ) ) && ( ! $this->menu_style || $fb_menu_element ) ) {
if ( $fb_menu_element ) {
$item_output .= 'hover' === $expand_method ? '' : '';
$item_output .= '' . $args->after;
/* Translators: The menu item title. */
$item_output .= '';
} else {
$item_output .= ' ';
$item_output .= '' . $args->after;
}
} else {
$item_output .= '' . $args->after;
}
}
// 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 ) );
if ( 0 === $depth && $args->has_children ) {
$class_names .= ( 'enabled' === $this->menu_megamenu_status ) ? ' fusion-megamenu-menu' : ' fusion-dropdown-menu';
$class_names .= ( 'enabled' === $this->menu_megamenu_status ) ? ' {fusion_all_widgets}' : '';
}
if ( 0 === $depth && $this->menu_style ) {
$class_names .= ' fusion-menu-item-button';
}
// Add class to last element in flyout menus.
if ( 0 === $depth && ( 'v6' === $header_layout && ! $this->args['woocommerce_acc_link_main_nav'] || ( $fb_menu_element && '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 ( $fb_menu_element && 0 === $depth && 'flyout' === $this->args['submenu_mode'] && ( empty( $item->url ) || '#' === $item->url || 'http://' === $item->url ) ) {
$class_names .= ' awb-flyout-top-level-no-link';
}
if ( 1 === $depth ) {
if ( '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 . '};';
}
} else {
$class_names .= ' fusion-dropdown-submenu';
}
}
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 || ( $fb_menu_element && 'flyout' === $this->args['submenu_mode'] && isset( $fusion_meta['background_image'] ) && '' !== $fusion_meta['background_image'] ) ) ? ' data-item-id="' . $item->ID . '"' : '';
$output .= '
- ';
if ( $fb_menu_element ) {
$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 = [] ) {
$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++;
}
$fb_menu_element = $this->args['fb_menu_element'];
// Add the bg image markup for flyout menu items.
if ( 0 === $depth && ( 'v6' === $this->args['header_layout'] || ( $fb_menu_element && 'flyout' === $this->args['submenu_mode'] ) ) && $this->flyout_menu_bg_markup && $this->top_level_menu_items_count === $this->no_of_top_level_items_displayed ) {
$output .= '';
}
if ( 'v7' === $this->args['header_layout'] && ( '' !== $this->args['logo_url'] || '' !== $this->args['logo_retina_url'] ) && 'top' === $this->args['header_position'] && $this->middle_logo_menu_break_point == $this->no_of_top_level_items_displayed && '0' === $item->menu_item_parent ) { // phpcs:ignore WordPress.PHP.StrictComparisons
ob_start();
get_template_part( 'templates/logo' );
$output .= ob_get_clean();
}
}
/**
* 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 menu 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;
}
}
}
/* Omit closing PHP tag to avoid "Headers already sent" issues. */