Skip to content

Commit 88fc518

Browse files
committed
v1.3.1 bump and code style tweaks
1 parent 2b721fc commit 88fc518

7 files changed

+55
-30
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 1.3.1 (03 Oct 2016)
2+
* Tweak: The `object_slug` property is now available to get the slug for relative URLs - props @Fahrradflucht
3+
14
#### 1.3.0 (25 Feb 2016)
25
* Fix (V2): Nodes duplication in sublevel menu items, see https://github.com/unfulvio/wp-api-menus/pull/22 - props @bpongvh
36
* Fix (V2): The items array was empty because it was looking for "ID" key instead of "id" - props @Dobbler

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "unfulvio/wp-api-menus",
33
"description": "Extends WordPress WP API with menu routes.",
44
"type": "wordpress-plugin",
5-
"version": "1.3.0",
5+
"version": "1.3.1",
66
"keywords": ["wordpress", "wp", "wp-api", "wp-rest-api", "api", "json"],
77
"homepage": "https://github.com/unfulvio/wp-api-menus",
88
"license": "GPLv2.0+",

includes/wp-api-menus-v1.php

+17-1
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,9 @@ public static function get_menus() {
6464
$json_url = get_json_url() . '/menus/';
6565
$wp_menus = wp_get_nav_menus();
6666

67-
$i = 0;
67+
$i = 0;
6868
$json_menus = array();
69+
6970
foreach ( $wp_menus as $wp_menu ) :
7071

7172
$menu = (array) $wp_menu;
@@ -81,6 +82,7 @@ public static function get_menus() {
8182
$json_menus[ $i ]['meta']['links']['self'] = $json_url . $menu['term_id'];
8283

8384
$i ++;
85+
8486
endforeach;
8587

8688
return $json_menus;
@@ -112,7 +114,9 @@ public function get_menu( $id ) {
112114
$json_menu['count'] = abs( $menu['count'] );
113115

114116
$json_menu_items = array();
117+
115118
foreach ( $wp_menu_items as $item_object ) {
119+
116120
$json_menu_items[] = $this->format_menu_item( $item_object );
117121
}
118122

@@ -171,7 +175,9 @@ public static function get_menu_locations() {
171175
public function get_menu_location( $location ) {
172176

173177
$locations = get_nav_menu_locations();
178+
174179
if ( ! isset( $locations[ $location ] ) ) {
180+
175181
return array();
176182
}
177183

@@ -181,9 +187,12 @@ public function get_menu_location( $location ) {
181187
$sorted_menu_items = $top_level_menu_items = $menu_items_with_children = array();
182188

183189
foreach ( (array) $menu_items as $menu_item ) {
190+
184191
$sorted_menu_items[ $menu_item->menu_order ] = $menu_item;
185192
}
193+
186194
foreach ( $sorted_menu_items as $menu_item ) {
195+
187196
if ( (int) $menu_item->menu_item_parent !== 0 ) {
188197
$menu_items_with_children[ $menu_item->menu_item_parent ] = true;
189198
} else {
@@ -192,19 +201,23 @@ public function get_menu_location( $location ) {
192201
}
193202

194203
$menu = array();
204+
195205
while ( $sorted_menu_items ) :
196206

197207
$i = 0;
208+
198209
foreach ( $top_level_menu_items as $top_item ) :
199210

200211
$menu[ $i ] = $this->format_menu_item( $top_item, false );
212+
201213
if ( isset( $menu_items_with_children[ $top_item->ID ] ) ) {
202214
$menu[ $i ]['children'] = $this->get_nav_menu_item_children( $top_item->ID, $menu_items, false );
203215
} else {
204216
$menu[ $i ]['children'] = array();
205217
}
206218

207219
$i++;
220+
208221
endforeach;
209222

210223
break;
@@ -235,7 +248,9 @@ public function get_nav_menu_item_children( $parent_id, $nav_menu_items, $depth
235248
$nav_menu_item_list[] = $this->format_menu_item( $nav_menu_item, true, $nav_menu_items );
236249

237250
if ( $depth ) {
251+
238252
if ( $children = $this->get_nav_menu_item_children( $nav_menu_item->ID, $nav_menu_items ) ) {
253+
239254
$nav_menu_item_list = array_merge( $nav_menu_item_list, $children );
240255
}
241256
}
@@ -280,6 +295,7 @@ public function format_menu_item( $menu_item, $children = false, $menu = array()
280295
);
281296

282297
if ( $children === true && ! empty( $menu ) ) {
298+
283299
$menu_item['children'] = $this->get_nav_menu_item_children( $item['ID'], $menu );
284300
}
285301

includes/wp-api-menus-v2.php

+16-12
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ public static function get_plugin_namespace() {
4949
* Register menu routes for WP API v2.
5050
*
5151
* @since 1.2.0
52-
* @return array
5352
*/
5453
public function register_routes() {
5554

@@ -85,7 +84,6 @@ public function register_routes() {
8584
'callback' => array( $this, 'get_menu_location' ),
8685
)
8786
) );
88-
8987
}
9088

9189

@@ -278,9 +276,11 @@ public function get_menu_location( $request ) {
278276
* from the ground up
279277
*/
280278
$rev_items = array_reverse ( $menu_items );
281-
$rev_menu = array();
282-
$cache = array();
279+
$rev_menu = array();
280+
$cache = array();
281+
283282
foreach ( $rev_items as $item ) :
283+
284284
$formatted = array(
285285
'ID' => abs( $item->ID ),
286286
'order' => (int) $item->menu_order,
@@ -298,24 +298,28 @@ public function get_menu_location( $request ) {
298298
'type_label' => $item->type_label,
299299
'children' => array(),
300300
);
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 ] );
304304
}
305305

306306
$formatted = apply_filters( 'rest_menus_format_menu_item', $formatted );
307307

308308
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 ) ) {
311311
array_push( $cache[ $item->menu_item_parent ], $formatted );
312312
} else {
313313
$cache[ $item->menu_item_parent ] = array( $formatted, );
314314
}
315+
315316
} else {
317+
316318
array_push( $rev_menu, $formatted );
317319
}
320+
318321
endforeach;
322+
319323
return array_reverse ( $rev_menu );
320324
}
321325

@@ -327,7 +331,7 @@ public function get_menu_location( $request ) {
327331
* @param int $parent_id The parent nav_menu_item ID
328332
* @param array $nav_menu_items Navigation menu items
329333
* @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
331335
*/
332336
public function get_nav_menu_item_children( $parent_id, $nav_menu_items, $depth = true ) {
333337

@@ -360,7 +364,7 @@ public function get_nav_menu_item_children( $parent_id, $nav_menu_items, $depth
360364
* @param object|array $menu_item The menu item
361365
* @param bool $children Get menu item children (default false)
362366
* @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
364368
*/
365369
public function format_menu_item( $menu_item, $children = false, $menu = array() ) {
366370

@@ -379,7 +383,7 @@ public function format_menu_item( $menu_item, $children = false, $menu = array()
379383
'description' => $item['description'],
380384
'object_id' => abs( $item['object_id'] ),
381385
'object' => $item['object'],
382-
'object_slug' => get_post($item['object_id'])->post_name,
386+
'object_slug' => get_post( $item['object_id'] )->post_name,
383387
'type' => $item['type'],
384388
'type_label' => $item['type_label'],
385389
);

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "wp-api-menus",
33
"title": "WP API Menus",
44
"description": "Extends the WordPress JSON REST WP API with new routes pointing to WordPress menus.",
5-
"version": "1.3.0",
5+
"version": "1.3.1",
66
"license": "GPL-2.0+",
77
"homepage": "https://wordpress.org/plugins/wp-api-menus",
88
"repository": {

readme.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
44
Tags: wp-api, wp-rest-api, json-rest-api, json, menus, rest, api, menu-routes
55
Requires at least: 3.6.0
66
Tested up to: 4.4.2
7-
Stable tag: 1.3.0
7+
Stable tag: 1.3.1
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -58,6 +58,9 @@ Nothing to show really, this plugin has no settings or frontend, it just extends
5858

5959
== Changelog ==
6060

61+
= 1.3.1 =
62+
* Tweak: The `object_slug` property is now available to get the slug for relative URLs - props @Fahrradflucht
63+
6164
= 1.3.0 =
6265
* Fix (V2): Nodes duplication in sublevel menu items, see https://github.com/unfulvio/wp-api-menus/pull/22 - props @bpongvh
6366
* Fix (V2): The items array was empty because it was looking for "ID" key instead of "id" - props @Dobbler

wp-api-menus.php

+13-14
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Plugin URI: https://github.com/nekojira/wp-api-menus
55
* Description: Extends WP API with WordPress menu routes.
66
*
7-
* Version: 1.3.0
7+
* Version: 1.3.1
88
*
99
* Author: Fulvio Notarstefano
1010
* Author URI: https://github.com/unfulvio
@@ -46,18 +46,17 @@
4646
*
4747
* @since 1.0.0
4848
*/
49-
function wp_rest_menus_init() {
50-
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' ) );
55-
} else {
56-
$class = new WP_JSON_Menus();
57-
add_filter( 'json_endpoints', array( $class, 'register_routes' ) );
58-
}
59-
}
60-
61-
add_action( 'init', 'wp_rest_menus_init' );
49+
function wp_rest_menus_init() {
50+
51+
if ( ! defined( 'JSON_API_VERSION' ) && ! 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' ) );
54+
} else {
55+
$class = new WP_JSON_Menus();
56+
add_filter( 'json_endpoints', array( $class, 'register_routes' ) );
57+
}
58+
}
59+
60+
add_action( 'init', 'wp_rest_menus_init' );
6261

6362
endif;

0 commit comments

Comments
 (0)