Browse
For agents
About
Stream – Activity Log & Audit Trail
/
2.0.2
Stream – Activity Log & Audit Trail
v2.0.2
Switch version
4.4.0
4.3.0
4.2.2
4.2.1
trunk
2.0.1
2.0.2
2.0.3
2.0.4
2.0.5
3.0.0
3.0.1
3.0.2
3.0.3
3.0.4
3.0.5
3.0.6
3.0.7
3.1
3.1.1
3.10.0
3.2.0
3.2.1
3.2.2
3.2.3
All 50 releases
Overview
Code
stream
/
includes
/
feeds
/
json.php
json.php
in Stream – Activity Log & Audit Trail 2.0.2, at includes/feeds/json.php
8 lines
242 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
header
(
'
Content-type: application/json; charset=
'
.
get_option
(
'
blog_charset
'
)
,
true
)
;
3
if
(
version_compare
(
PHP_VERSION
,
'
5.4
'
,
'
>=
'
)
)
{
4
echo
json_encode
(
$
records
,
JSON_PRETTY_PRINT
)
;
5
}
else
{
6
echo
json_encode
(
$
records
)
;
7
}
8