is_custom_width ) ? ' style="width: ' . $this->is_custom_width . 'px"' : ''; $indent = str_repeat( "\t", $depth ); $output .= "\n$indent\n"; } /** * Start Element. * * @param string $output output. * @param WP_Post $item item. * @param int $depth depth. * @param array|object $args args. * @param int $id id. */ public function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) { $args = (object) $args; $class_names = ''; $value = ''; $indent = ( $depth ) ? str_repeat( "\t", $depth ) : ''; $classes = empty( $item->classes ) ? array() : $item->classes; $classes[] = 'menu-item-' . $item->ID; // adding depth class. $classes[] = 'themeoo-depth-' . $depth; // adding if mega menu class. $classes[] = ( 0 == $depth && ! empty( $item->mega ) ) ? 'themeoo-mega-menu' : ''; // adding if natural-width class. $classes[] = ( 0 == $depth && ! empty( $item->mega ) && 'natural' == $item->mega_width ) ? 'themeoo-col-' . $this->child_count . ' themeoo-' . $item->mega_width : ''; // adding if custom-width class. $classes[] = ( 0 == $depth && ! empty( $item->mega ) && 'custom' == $item->mega_width ) ? 'themeoo-' . $item->mega_width : ''; // adding if right position class. $classes[] = ( 0 == $depth && ! empty( $item->mega ) && ! empty( $item->mega_width ) && ! empty( $item->mega_position ) ) ? 'themeoo-right' : ''; // adding bootstrap col if parent item is mega! $classes['col'] = ( ! empty( $bs_col ) ) ? $bs_col : ''; // adding force custom bootstrap col. $classes['col'] = ( 1 == $depth && ! empty( $item->column_width ) ) ? $item->column_width : $classes['col']; $classes = apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound,WPThemeReview.CoreFunctionality.PrefixAllGlobals.NonPrefixedHooknameFound $class_names = implode( ' ', $classes ); $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : ''; $id = apply_filters( 'nav_menu_item_id', 'menu-item-' . $item->ID, $item, $args ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound,WPThemeReview.CoreFunctionality.PrefixAllGlobals.NonPrefixedHooknameFound $id = $id ? ' id="' . esc_attr( $id ) . '"' : ''; $output .= $indent . ''; $atts = array(); $atts['title'] = ! empty( $item->attr_title ) ? $item->attr_title : ''; $atts['target'] = ! empty( $item->target ) ? $item->target : ''; $atts['rel'] = ! empty( $item->xfn ) ? $item->xfn : ''; $atts['href'] = ! empty( $item->url ) ? $item->url : ''; $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound,WPThemeReview.CoreFunctionality.PrefixAllGlobals.NonPrefixedHooknameFound $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; // if column title not disable. if ( empty( $item->column_title ) ) { // if column title link not disable. if ( empty( $item->column_title_link ) ) { $is_sticky_item = ( 0 == $depth ) ? ' themeoo-sticky-item' : ''; $is_mega_column = ( isset( $this->menu_type[ $item->menu_item_parent ] ) ) ? ' themeoo-title' : ''; $item_output .= ''; } elseif ( 1 == $depth && ! empty( $item->column_title_link ) ) { $item_output .= '' . $item->colum_title; } // adding icon. $item_output .= ( ! empty( $item->icon ) ) ? '' : ''; $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after; // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound,WPThemeReview.CoreFunctionality.PrefixAllGlobals.NonPrefixedHooknameFound if ( ! empty( $item->highlight ) ) { $highlight = ( ! empty( $item->highlight_type ) ) ? $item->highlight_type : 'default'; $item_output .= '' . $item->highlight . ''; } // adding custom content. $item_output .= ( ! empty( $item->content ) ) ? '' . do_shortcode( $item->content ) . '' : ''; // if column title link not disable. if ( empty( $item->column_title_link ) || ( 1 == $depth && ! empty( $item->column_title_link ) ) ) { $item_output .= ''; } } // adding force custom content. if ( ! empty( $item->column_title ) ) { $item_output .= ( ! empty( $item->content ) ) ? '
' . do_shortcode( $item->content ) . '
' : ''; } $item_output .= $args->after; $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound,WPThemeReview.CoreFunctionality.PrefixAllGlobals.NonPrefixedHooknameFound } /** * Traverses elements to create list from elements. * * This function is designed to enhance Walker::display_element() to * display children of higher nesting levels than selected inline on * the highest depth level displayed. This prevents them being orphaned * at the end of the comment list. * * Example: max_depth = 2, with 5 levels of nested content. * 1 * 1.1 * 1.1.1 * 1.1.1.1 * 1.1.1.1.1 * 1.1.2 * 1.1.2.1 * 2 * 2.2 * * @see Walker::display_element() * * @param WP_Comment $element Comment data object. * @param array $children_elements List of elements to continue traversing. Passed by reference. * @param int $max_depth Max depth to traverse. * @param int $depth Depth of the current element. * @param array $args An array of arguments. * @param string $output Used to append additional content. Passed by reference. */ public function display_element( $element, &$children_elements, $max_depth, $depth, $args, &$output ) { if ( ! empty( $element->mega ) ) { $this->child_count = ( isset( $children_elements[ $element->ID ] ) ) ? count( $children_elements[ $element->ID ] ) : 0; $this->menu_type[ $element->ID ] = true; } if ( 0 == $depth && ! empty( $element->mega ) && 'custom' == $element->mega_width ) { $this->is_custom_width = $element->mega_custom_width; } else { $this->is_custom_width = false; } parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output ); } /** * Custom Wrap. * * @return string */ public function custom_wrap() { $output = ''; if ( themeoo_get_mod( 'layout_header_search' ) ) { $output .= ''; } if ( themeoo_get_mod( 'layout_header_show_mini_cart' ) && class_exists( 'WooCommerce' ) ) { $output .= '
  • '; $output .= '' . WC()->cart->get_cart_contents_count() . ''; $output .= '
  • '; } $output = apply_filters( 'themeoo_custom_menu_wrap', $output ); return ''; } } }