- ExpressionEngine 4.x, 5.x or 6.x
- For ExpressionEngine 2.6+ and 3.x use JSON version 1.1.9.
Not tested with Assets, Matrix, Playa and Channel Files fieldtypes!
I don't own Assets, Matrix and Playa modules, so if you use Assets, Matrix or Playa fields I recommend to verify whether changes to the code are required and to test this plugin on a local or development server before using it on a production/live server. Since this plugin only outputs data I don't expect any damage but I will not accept any liability for any problems risen from using this plugin.
Do not select duplicate custom fields in channels
Since EE4 it is possible to use custom fields outside of field groups as well as inside field groups. This plugin will not work when a new custom field is assigned as a standalone custom field as well as a grouped custom field within the same channel. You need to choose to use either a grouped custom field or a standalone custom field. This is because newly created custom fields get their own table in the database. Since legacy custom fields do not have their own table they will work fine either way.
- Copy the
/system/user/addons/json/
folder to your/system/user/addons/
folder
Set xhr to yes to only output data when an XMLHttpRequest is detected. Do not set this to yes if you are using JSONP, as JSONP requests are not true XHMLHttpRequests.
Set terminate to yes to terminate the template and output your json immediately, with Content-Type headers.
Specify which fields you wish to have in the array. Separate multiple fields by a pipe character. If you do not specify fields, you will get all of the default fields' data. The primary key (entry_id
for entries, member_id
for members) will always be present and cannot be suppressed by this parameter.
Set a custom Content-Type header. The default is "application/json", or "application/javascript" if using JSONP. Headers are only sent when terminate is set to "yes".
Set jsonp to yes to enable a JSONP response. You must also specify a valid callback. You are encouraged to set terminate to yes when using JSONP.
Set a callback function for your JSONP request. Since query strings do not work out-of-the-box in EE, you may want to consider using a URL segment to specify your callback, ie. callback="{segment_3}", rather than the standard ?callback=foo method.
Use a different date format. Note: always returns dates as string.
By default, JSON will output a simple array of items. Use this parameter to make the response into a JSON object whose specified property is the array of items.
Using this parameter will turn this:
[
{
"title": "Foo",
"entry_id": 1
},
{
"title": "Bar",
"entry_id": 2
}
]
Into this:
{
"items": [
{
"title": "Foo",
"entry_id": 1
},
{
"title": "Bar",
"entry_id": 2
}
]
}
By default, each item in the response array is a simple object. Using this parameter turns each item into a JSON object whose specified property is the item object.
Using this parameter will turn this:
[
{
"title": "Foo",
"entry_id": 1
},
{
"title": "Bar",
"entry_id": 2
},
]
Into this:
[
{
"item": {
"title": "Foo",
"entry_id": 1
}
},
{
"item": {
"title": "Bar",
"entry_id": 2
}
}
]
By default, the date fields are in unix timestamp format, accurate to milliseconds. Use the Javascript Date object in combination with date field data:
for (i in data) {
var entryDate = new Date(data[i].entry_date);
}
If you require a different output format for the date fields, set the date_format= parameter. This uses the php date() function. common formats include "U" (unix timestamp in seconds), "c" (ISO 8601) or "Y-m-d H:i" (2011-12-24 19:06).
{exp:json:entries channel="news"}
json:entries is a single tag, not a tag pair. Use channel:entries parameters to filter your entries.
title
url_title
entry_id
channel_id
author_id
status
entry_date
edit_date
expiration_date
Plus all of the custom fields associated with that channel.
See channel:entries parameters.
This will add categories to the entries response
When paired with show_categories="yes", this will display only categories from the specified groups.
Most custom fields will just return the raw column data from the exp_channel_data
database table. The following fieldtypes will provide custom data. You must specify the channel
parameter to get custom fields.
The data will be the Unix timestamp, accurate to milliseconds. This is because the native JavaScript Date object accepts a millisecond-based timestamp in its constructor. Date can be formatted with using the date_format=
parameter as mentioned above.
your_date_field: 1385661660000
The data will include an array of File Grid rows, including the row_id, the url to the file and the column names:
"your_grid_field": [
{
"row_id": 1,
"file": "the-url-to-your-file",
"my_col_name": "foo",
"other_col_name": "bar"
},
{
"row_id": 2,
"file": "the-url-to-your-file",
"my_col_name": "baz",
"other_col_name": "qux"
}
]
The data will include an array of custom fields ordered by Fluid field order. When a custom field is duplicated, the data will be returned in an array. In the case of duplicated *grid and relationships fields the data will be added to the existing array of that field:
"your_fluid_field": {
"your_custom_field": "Your Fluid Custom Field Contents",
"legacy_duplicated_custom_field": [
"Your Duplicated Fluid Custom Field Contents 1 (first instance)",
"Your Duplicated Fluid Custom Field Contents 2 (second instance)"
],
"your_grid_field": [
{
"row_id": 1,
"your_grid_column": "Your Fluid Grid Column Contents",
"your_second_grid_column": "Your Second Fluid Grid Column Contents",
}
],
"your_relationships_field": [
{
"channel_id": 2,
"channel_name": "channel-2",
"entry_id": 3,
"title": "Channel 2, Entry 2 (first instance)",
"url_title": "channel-2-entry-2",
"author_id": 1,
"username": "Site Admin"
},
{
"channel_id": 2,
"channel_name": "channel-2",
"entry_id": 3,
"title": "Channel 2, Entry 3 (second instance)",
"url_title": "channel-2-entry-3",
"author_id": 1,
"username": "Site Admin"
}
]
}
The data will include an array of Grid rows, including the row_id and the column names:
"your_grid_field": [
{
"row_id": 1,
"my_col_name": "foo",
"other_col_name": "bar"
},
{
"row_id": 2,
"my_col_name": "baz",
"other_col_name": "qux"
}
]
The data will include an array of related data, including channel id, channel name, entry id, title, URL title, author id and username:
"your_relationships_field": [
{
"channel_id": 1,
"channel_name": "your_channel_name",
"entry_id": 1,
"title": "Your Entry Title",
"url_title": "your-entry-title",
"author_id": 1,
"username": "Your author's username"
}
]
your_assets_field: [
{
"file_id": 1,
"url": "http://yoursite.com/uploads/flower.jpg",
"subfolder": "",
"filename": "flower",
"extension": "jpg",
"date_modified": 1389459034000,
"kind": "image",
"width": "300",
"height": "300",
"size": "65 KB",
"title": null,
"date": 1389459034000,
"alt_text": null,
"caption": null,
"author": null,
"desc": null,
"location": null,
"manipulations": {
"medium": "http://yoursite.com/uploads/_medium/flower.jpg",
"large": "http://yoursite.com/uploads/_large/flower.jpg"
}
},
{
"file_id": 2,
"url": "http://yoursite.com/uploads/dog.jpg",
"subfolder": "",
"filename": "dog",
"extension": "jpg",
"date_modified": 1389466147000,
"kind": "image",
"width": "300",
"height": "300",
"size": "75 KB",
"title": null,
"date": 1389466147000,
"alt_text": null,
"caption": null,
"author": null,
"desc": null,
"location": null,
"manipulations": {
"medium": "http://yoursite.com/uploads/_medium/dog.jpg",
"large": "http://yoursite.com/uploads/_large/dog.jpg"
}
}
]
NOTE: image manipulation urls are only available to Assets files store locally, not on Amazon S3 or Google Storage.
your_channel_files_field: [
{
"file_id": 1,
"url": "http://yoursite.com/uploads/flower.jpg",
"filename": "flower.jpg",
"extension": "jpg",
"kind": "image\/jpeg",
"size": "65 KB",
"title": "flower",
"date": 1389459034000,
"author": 1,
"desc": "Lorem ipsum",
"primary": true,
"downloads": 10,
"custom1": null,
"custom2": null,
"custom3": null,
"custom4": null,
"custom5": null
},
{
"file_id": 2,
"url": "http://yoursite.com/uploads/dog.jpg",
"filename": "dog.jpg",
"extension": "jpg",
"kind": "image\/jpeg",
"size": "75 KB",
"title": "dog",
"date": 1389466147000,
"author": 1,
"desc": "Lorem ipsum",
"primary": false,
"downloads": 0,
"custom1": null,
"custom2": null,
"custom3": null,
"custom4": null,
"custom5": null
}
]
The data will include an array of Matrix rows, including the row_id and the column names:
your_matrix_field: [
{
row_id: 1,
my_col_name: "foo",
other_col_name: "bar"
},
{
row_id: 2,
my_col_name: "baz",
other_col_name: "qux"
}
]
The data will include an array of related entry IDs:
your_playa_field: [1, 2]
{exp:json:search search_id="{segment_3}"}
json:search must be paired with {exp:search:simple_form} or {exp:search:advanced_form}.
See channel:entries parameters.
The native search forms will append a search_id automatically to the result_page when you submit a form.
{exp:search:simple_form channel="site" form_id="search" return_page="site/json"}
<input type="text" name="keywords">
<input type="submit" value="Submit">
{/exp:search:simple_form}
<script type="text/javascript">
jQuery(document).ready(function($){
$("#search").submit(function(){
$.post(
$(this).attr("action"),
$(this).serialize(),
function(data) {
console.log(data);
},
"json"
);
return false;
});
});
</script>
{exp:json:members member_id="1|2"}
json:members is a single tag, not a tag pair.
member_id
group_id (role_id as of EE6+)
username
screen_name
email
signature
avatar_filename
avatar_width
avatar_height
photo_filename
photo_width
photo_height
join_date
last_visit
last_activity
last_entry_date
last_comment_date
last_forum_post_date
total_entries
total_comments
total_forum_topics
total_forum_posts
language
timezone
Plus all of the custom fields associated with that member.
Specify which members, by member_id, to output. Separate multiple member_id's with a pipe (|
) character.
Use member_id="CURRENT_USER"
to get member data for just the current user.
Specify which members, by username, to output. Separate multiple usernames with a pipe (|
) character.
Specify which members, by group_id, to output. Separate multiple group_id's with a pipe (|
) character
Set a limit for records to retrieve.
Set an offset for records to retrieve. Has to be used in conjunction with the limit=
parameter
If you're doing cross-domain AJAX, you will probably want to use JSONP.
This is the JSON template:
{exp:json:entries channel="site" jsonp="yes" callback="{segment_3}"}
And the request itself:
$.ajax({
url: "http://yoursite.com/group/template/yourCallbackFunction",
dataType: "jsonp",
jsonp: false
});
function yourCallbackFunction(data) {
console.log(data);
}
You'll see here that we appended the callback function to the url as a segment, rather than use the traditional ?callback=function syntax. This is because query strings do not work out of the box with EE. If you have gotten query strings to work with EE you can use the traditional approach:
{exp:json:entries channel="site" jsonp="yes" callback="<?php echo $_GET['callback']; ?>"}
The request:
$.ajax({
url: "http://yoursite.com/group/template",
dataType: "jsonp",
jsonpCallback: "yourCallbackFunction"
});
function yourCallbackFunction(data) {
console.log(data);
}
- Added Fluid fieldtype support
- Extended the data returned by relationships. It now includes channel id, channel name, entry id, entry title, entry url_title, entry author id and entry username.
- Removed duplicate lines of code in the
entries_grid_relationship
function - Removed caching in the
entries_relationship
andentries_grid_relationship
functions. It interfered with relationships fields embedded inside [File_]Grid and Fluid fields. - Changed
PATH_MOD
toPATH_ADDONS
. PATH_MOD still works, but is basically deprecated since it changed to PATH_ADDONS in EE3 - Simplified the
members
functions - Bugfix: where the
username
parameter didn't work - Updated README
- Bugfix: Updated the
members
function to handle both legacy (pre EE4) and newer member data - Added
json_pretty_print
parameter for better readable output. Handy in the development stage - Updated README
- Bugfix: Removed all remnants of fluid field data, since the Fluid fieldtype is not (yet) supported. The remnant data is unusable at this point. Working on support for Fluid fieldtype
- Changed
addon.setup.php
and cleaned it up
- ExpressionEngine 4+ compatibility
- Several changes to the code due to database changes
- Added support for File Grid fieldtype
- Added support for legacy custom fields and data (EE2 and EE3 custom fields and data) for compatibility with upgraded versions of EE4+
- Added
/system/user/addons/json/icon.png
for the EE6 control panel
- EE3 compatibility
- Added relationships support for grids as per ahebrank's commit
- Added
/system/user/addons/json/addon.setup.php
for EE3 - Added
/system/user/addons/json/README.md
for the add-on manual in the control panel (as of EE3) - Note: not tested with Assets, Matrix, Playa and Channel Files fieldtypes/modules
This plugin is a fork of the excellent JSON plugin by Rob Sanchez.
Since I'm a jack of all trades and master of none, I could have never done this without the jumpstart Rob Sanchez's plugin gave me.