Skip to content

Commit 6aee9fa

Browse files
committed
minor edits
1 parent ea087f4 commit 6aee9fa

8 files changed

+131
-61
lines changed

.editorconfig

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#
2+
# .editorconfig
3+
#
4+
# This file is for unifying the coding style for different editors and IDEs:
5+
# http://editorconfig.org
6+
#
7+
# WordPress Coding Standards:
8+
# http://make.wordpress.org/core/handbook/coding-standards/
9+
#
10+
root = true
11+
12+
[*]
13+
charset = utf-8
14+
end_of_line = lf
15+
insert_final_newline = true
16+
trim_trailing_whitespace = true
17+
indent_style = tab
18+
indent_size = 4
19+
20+
[*.{md,sass,scss,less}]
21+
indent_style = space
22+
indent_size = 2
23+
24+
[*.{json,yml,xml,xml.dist}]
25+
insert_final_newline = false
26+
indent_style = space
27+
indent_size = 2
28+
29+
[*.{txt,md}]
30+
insert_final_newline = false
31+
indent_style = space
32+
indent_size = 2
33+
trim_trailing_whitespace = false
34+
end_of_line = crlf

.gitignore

+43-37
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,45 @@
1-
# Numerous always-ignore extensions
2-
*.diff
3-
*.err
4-
*.orig
5-
*.log
6-
*.rej
7-
*.swo
8-
*.swp
9-
*.vi
10-
*~
11-
*.sass-cache
12-
13-
# OS or Editor folders
14-
.DS_Store
15-
Thumbs.db
16-
.cache
1+
### IDE ###
2+
project.xml
3+
project.properties
4+
/nbproject/private/
5+
.buildpath
176
.project
18-
.settings
19-
.tmproj
20-
*.esproj
21-
nbproject
22-
*.sublime-project
23-
*.sublime-workspace
24-
25-
# Dreamweaver added files
26-
_notes
27-
dwsync.xml
28-
29-
# Komodo
30-
*.komodoproject
31-
.komodotools
32-
33-
# Folders to ignore
34-
.hg
7+
.settings*
8+
sftp-config.json
9+
.idea/
10+
.iml
11+
.floo
12+
.flooignore
13+
14+
### Node ###
15+
/node_modules/
16+
/deploy/
17+
18+
### Bower ###
19+
/bower_components
20+
21+
### Sass ###
22+
.sass-cache/
23+
24+
### Composer ###
25+
/vendor/
26+
composer.lock
27+
28+
### Unit tests ###
29+
/tmp
30+
/tests/bin/tmp
31+
32+
### Logs ###
33+
/logs
34+
35+
### VCS ###
3536
.svn
36-
.CVS
37-
intermediate
38-
.idea
39-
cache
37+
/svn
38+
39+
### OS crap ###
40+
.DS_Store?
41+
ehthumbs.db
42+
Icon?
43+
Thumbs.db
44+
.tmp
45+
.temp

CHANGELOG.md

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
1-
### 1.1.4 (30 apr 2015)
2-
Supports WordPress 4.2, add composer.json for wp-packagist
1+
#### 1.1.5 (19 jun 2015)
2+
* Minor edits to headers and phpdocs
33

4-
### 1.1.3 (13 Mar 2015)
4+
#### 1.1.4 (30 apr 2015)
5+
* Supports WordPress 4.2, add composer.json for wp-packagist
6+
7+
#### 1.1.3 (13 Mar 2015)
58
* Fixes bug where duplicate items where created in nested menus - props @josh-taylor
69

7-
### 1.1.2 (10 Feb 2015)
10+
#### 1.1.2 (10 Feb 2015)
811
* Introduced `json_menus_format_menu_item` filter hook - props @Noctine
912

10-
### 1.1.1 (15 Jan 2015)
13+
#### 1.1.1 (15 Jan 2015)
1114
* Submission to WordPress.org plugins repository.
1215

13-
### 1.1.0 (24 Nov 2014)
16+
#### 1.1.0 (24 Nov 2014)
1417
* Fixed typo confusing `parent` with `collection` in meta
1518
* Routes for menus in theme locations now include complete tree with item order and nested children
1619
* `description` attribute for individual items is now included in results

README.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Contributors: nekojira
33
Donate link: https://www.paypal.com/uk/cgi-bin/webscr?cmd=_flow&SESSION=SUJDJhsqyxThi-AbCT2HmIpMmBar3yAXDTYxlcNqruUIneC0_cxfT29SdIq&dispatch=5885d80a13c0db1f8e263663d3faee8d5402c249c5a2cfd4a145d37ec05e9a5e
44
Tags: wp-api, json, menus, rest
55
Requires at least: 3.6.0
6-
Tested up to: 4.2.1
7-
Stable tag: 1.1.4
6+
Tested up to: 4.2.2
7+
Stable tag: 1.1.5
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

composer.json

+12-10
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
{
22
"name": "nekojira/wp-api-menus",
33
"description": "Extends WordPress WP API with menu routes.",
4-
"version": "1.1.4",
5-
"keywords": [
6-
"wordpress",
7-
"wp",
8-
"wp-api",
9-
"api",
10-
"json"
11-
],
12-
"homepage": "https://github.com/nekojira/wp-api-menus",
13-
"license": "GPLv2 or later",
144
"type": "wordpress-plugin",
5+
"version": "1.1.5",
6+
"keywords": ["wordpress", "wp", "wp-api", "wp-rest-api", "api", "json"],
7+
"homepage": "https://github.com/nekojira/wp-api-menus",
8+
"license": "GPLv2.0+",
9+
"authors": [
10+
{
11+
"name": "Fulvio Notarstefano",
12+
"email": "[email protected]",
13+
"homepage": "https://github.com/nekojira",
14+
"role": "Developer"
15+
}
16+
],
1517
"require": {
1618
"php": ">=5.3.2",
1719
"composer/installers": "v1.0.19"

index.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
<?php
2-
3-
// silence is golden
2+
// silence is golden

lib/index.php

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?php
2+
// Silence is golden

plugin.php

+28-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,37 @@
11
<?php
22
/**
3+
* @link https://github.com/nekojira/wp-api-menus/
4+
* @package WP_API_Menus
5+
* @author Fulvio Notarstefano <[email protected]>
6+
*
7+
* @wordpress-plugin
38
* Plugin Name: JSON REST API Menu routes
4-
* Description: Extends WP API with WordPress menu routes
5-
* Author: nekojira<[email protected]>
9+
* Description: Extends WP API with WordPress menu routes.
10+
* Author: Fulvio Notarstefano
611
* Author URI: https://github.com/nekojira
7-
* Version: 1.1.4
12+
* Version: 1.1.5
813
* Plugin URI: https://github.com/nekojira/wp-api-menus
914
*/
1015

16+
/**
17+
* Copyright (c) 2015
18+
* Fulvio Notarstefano ([email protected]) and contributors.
19+
*
20+
* This program is free software; you can redistribute it and/or modify
21+
* it under the terms of the GNU General Public License, version 2 or, at
22+
* your discretion, any later version, as published by the Free
23+
* Software Foundation.
24+
*
25+
* This program is distributed in the hope that it will be useful,
26+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
27+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28+
* GNU General Public License for more details.
29+
*
30+
* You should have received a copy of the GNU General Public License
31+
* along with this program; if not, write to the Free Software
32+
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
33+
*/
34+
1135
// include main class
1236
include_once dirname( __FILE__ ) . '/lib/wp-api-menus.php';
1337

@@ -24,4 +48,4 @@ function wp_json_menus_init() {
2448
}
2549
add_action( 'wp_json_server_before_serve', 'wp_json_menus_init' );
2650

27-
endif;
51+
endif;

0 commit comments

Comments
 (0)