blob: aab68f0dc9875bd52f766eb0fa6c27df04bc1325 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
/**
* Elgg JSON output
* This outputs the api as JSON
*
* @package Elgg
* @subpackage Core
*
*/
$result = $vars['result'];
$export = $result->export();
global $jsonexport;
// with api calls, we don't want extra baggage found in other json views
// so we skip the associative array
$jsonexport = $export;
|