diff options
Diffstat (limited to 'views/json/api/output.php')
-rw-r--r-- | views/json/api/output.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/views/json/api/output.php b/views/json/api/output.php new file mode 100644 index 000000000..adeb7cc75 --- /dev/null +++ b/views/json/api/output.php @@ -0,0 +1,17 @@ +<?php +/** + * Elgg JSON output + * This outputs the api results 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;
\ No newline at end of file |