Skip to content

Commit e1d3833

Browse files
committed
2 parents f1e9c01 + f0ba99f commit e1d3833

File tree

2 files changed

+52
-40
lines changed

2 files changed

+52
-40
lines changed

includes/wp-api-menus-v2.php

+48-37
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ private function nested_menu_items( &$menu_items, $parent = null ) {
183183

184184
// Separate menu_items into parents & children.
185185
array_map( function( $i ) use ( $parent, &$children, &$parents ){
186-
if ( $i['ID'] != $parent && $i['parent'] == $parent ) {
186+
if ( $i['id'] != $parent && $i['parent'] == $parent ) {
187187
$parents[] = $i;
188188
} else {
189189
$children[] = $i;
@@ -192,8 +192,8 @@ private function nested_menu_items( &$menu_items, $parent = null ) {
192192

193193
foreach ( $parents as &$parent ) {
194194

195-
if ( $this->has_children( $children, $parent['ID'] ) ) {
196-
$parent['children'] = $this->nested_menu_items( $children, $parent['ID'] );
195+
if ( $this->has_children( $children, $parent['id'] ) ) {
196+
$parent['children'] = $this->nested_menu_items( $children, $parent['id'] );
197197
}
198198
}
199199

@@ -271,41 +271,52 @@ public function get_menu_location( $request ) {
271271

272272
$wp_menu = wp_get_nav_menu_object( $locations[ $location ] );
273273
$menu_items = wp_get_nav_menu_items( $wp_menu->term_id );
274-
$sorted_menu_items = $top_level_menu_items = $menu_items_with_children = array();
275274

276-
foreach ( (array) $menu_items as $menu_item ) {
277-
$sorted_menu_items[ $menu_item->menu_order ] = $menu_item;
278-
}
279-
foreach ( $sorted_menu_items as $menu_item ) {
280-
if ( (int) $menu_item->menu_item_parent !== 0 ) {
281-
$menu_items_with_children[ $menu_item->menu_item_parent ] = true;
282-
} else {
283-
$top_level_menu_items[] = $menu_item;
284-
}
285-
}
286-
287-
$menu = array();
288-
289-
while ( $sorted_menu_items ) :
290-
291-
$i = 0;
292-
foreach ( $top_level_menu_items as $top_item ) :
293-
294-
$menu[ $i ] = $this->format_menu_item( $top_item, false );
295-
if ( isset( $menu_items_with_children[ $top_item->ID ] ) ) {
296-
$menu[ $i ]['children'] = $this->get_nav_menu_item_children( $top_item->ID, $menu_items, false );
297-
} else {
298-
$menu[ $i ]['children'] = array();
299-
}
300-
301-
$i++;
302-
endforeach;
303-
304-
break;
305-
306-
endwhile;
307-
308-
return $menu;
275+
/**
276+
* wp_get_nav_menu_items() outputs a list that's already sequenced correctly.
277+
* So the easiest thing to do is to reverse the list and then build our tree
278+
* from the ground up
279+
*/
280+
$rev_items = array_reverse ( $menu_items );
281+
$rev_menu = array();
282+
$cache = array();
283+
foreach ( $rev_items as $item ) :
284+
$formatted = array(
285+
'ID' => abs( $item->ID ),
286+
'order' => (int) $item->menu_order,
287+
'parent' => abs( $item->menu_item_parent ),
288+
'title' => $item->title,
289+
'url' => $item->url,
290+
'attr' => $item->attr_title,
291+
'target' => $item->target,
292+
'classes' => implode( ' ', $item->classes ),
293+
'xfn' => $item->xfn,
294+
'description' => $item->description,
295+
'object_id' => abs( $item->object_id ),
296+
'object' => $item->object,
297+
'type' => $item->type,
298+
'type_label' => $item->type_label,
299+
'children' => array(),
300+
);
301+
// Pickup my children
302+
if ( array_key_exists ( $item->ID , $cache ) ) {
303+
$formatted['children'] = array_reverse ( $cache[ $item->ID ] );
304+
}
305+
306+
$formatted = apply_filters( 'rest_menus_format_menu_item', $formatted );
307+
308+
if ( $item->menu_item_parent != 0 ) {
309+
// Wait for parent to pick me up
310+
if ( array_key_exists ( $item->menu_item_parent , $cache ) ) {
311+
array_push( $cache[ $item->menu_item_parent ], $formatted );
312+
} else {
313+
$cache[ $item->menu_item_parent ] = array( $formatted, );
314+
}
315+
} else {
316+
array_push( $rev_menu, $formatted );
317+
}
318+
endforeach;
319+
return array_reverse ( $rev_menu );
309320
}
310321

311322

wp-api-menus.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,10 @@
4848
*/
4949
function wp_rest_menus_init() {
5050

51-
if ( ! in_array( 'json-rest-api/plugin.php', get_option( 'active_plugins' ) ) ) {
52-
$class = new WP_REST_Menus();
53-
add_filter( 'rest_api_init', array( $class, 'register_routes' ) );
51+
if ( ! defined( 'JSON_API_VERSION' ) &&
52+
! in_array( 'json-rest-api/plugin.php', get_option( 'active_plugins' ) ) ) {
53+
$class = new WP_REST_Menus();
54+
add_filter( 'rest_api_init', array( $class, 'register_routes' ) );
5455
} else {
5556
$class = new WP_JSON_Menus();
5657
add_filter( 'json_endpoints', array( $class, 'register_routes' ) );

0 commit comments

Comments
 (0)