@@ -49,7 +49,6 @@ public static function get_plugin_namespace() {
49
49
* Register menu routes for WP API v2.
50
50
*
51
51
* @since 1.2.0
52
- * @return array
53
52
*/
54
53
public function register_routes () {
55
54
@@ -85,7 +84,6 @@ public function register_routes() {
85
84
'callback ' => array ( $ this , 'get_menu_location ' ),
86
85
)
87
86
) );
88
-
89
87
}
90
88
91
89
@@ -278,9 +276,11 @@ public function get_menu_location( $request ) {
278
276
* from the ground up
279
277
*/
280
278
$ rev_items = array_reverse ( $ menu_items );
281
- $ rev_menu = array ();
282
- $ cache = array ();
279
+ $ rev_menu = array ();
280
+ $ cache = array ();
281
+
283
282
foreach ( $ rev_items as $ item ) :
283
+
284
284
$ formatted = array (
285
285
'ID ' => abs ( $ item ->ID ),
286
286
'order ' => (int ) $ item ->menu_order ,
@@ -298,24 +298,28 @@ public function get_menu_location( $request ) {
298
298
'type_label ' => $ item ->type_label ,
299
299
'children ' => array (),
300
300
);
301
- // Pickup my children
302
- if ( array_key_exists ( $ item ->ID , $ cache ) ) {
303
- $ formatted ['children ' ] = array_reverse ( $ cache [ $ item ->ID ] );
301
+
302
+ if ( array_key_exists ( $ item ->ID , $ cache ) ) {
303
+ $ formatted ['children ' ] = array_reverse ( $ cache [ $ item ->ID ] );
304
304
}
305
305
306
306
$ formatted = apply_filters ( 'rest_menus_format_menu_item ' , $ formatted );
307
307
308
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 ) ) {
309
+
310
+ if ( array_key_exists ( $ item ->menu_item_parent , $ cache ) ) {
311
311
array_push ( $ cache [ $ item ->menu_item_parent ], $ formatted );
312
312
} else {
313
313
$ cache [ $ item ->menu_item_parent ] = array ( $ formatted , );
314
314
}
315
+
315
316
} else {
317
+
316
318
array_push ( $ rev_menu , $ formatted );
317
319
}
320
+
318
321
endforeach ;
322
+
319
323
return array_reverse ( $ rev_menu );
320
324
}
321
325
@@ -327,7 +331,7 @@ public function get_menu_location( $request ) {
327
331
* @param int $parent_id The parent nav_menu_item ID
328
332
* @param array $nav_menu_items Navigation menu items
329
333
* @param bool $depth Gives all children or direct children only
330
- * @return array returns filtered array of nav_menu_items
334
+ * @return array returns filtered array of nav_menu_items
331
335
*/
332
336
public function get_nav_menu_item_children ( $ parent_id , $ nav_menu_items , $ depth = true ) {
333
337
@@ -360,7 +364,7 @@ public function get_nav_menu_item_children( $parent_id, $nav_menu_items, $depth
360
364
* @param object|array $menu_item The menu item
361
365
* @param bool $children Get menu item children (default false)
362
366
* @param array $menu The menu the item belongs to (used when $children is set to true)
363
- * @return array a formatted menu item for REST
367
+ * @return array a formatted menu item for REST
364
368
*/
365
369
public function format_menu_item ( $ menu_item , $ children = false , $ menu = array () ) {
366
370
@@ -379,7 +383,7 @@ public function format_menu_item( $menu_item, $children = false, $menu = array()
379
383
'description ' => $ item ['description ' ],
380
384
'object_id ' => abs ( $ item ['object_id ' ] ),
381
385
'object ' => $ item ['object ' ],
382
- 'object_slug ' => get_post ($ item ['object_id ' ])->post_name ,
386
+ 'object_slug ' => get_post ( $ item ['object_id ' ] )->post_name ,
383
387
'type ' => $ item ['type ' ],
384
388
'type_label ' => $ item ['type_label ' ],
385
389
);
0 commit comments