aboutsummaryrefslogtreecommitdiff
path: root/views/json/api/output.php
blob: eeea0400ed95e42a15126c96d083ef7d123241c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
	/**
	 * Elgg JSON output
	 * This outputs the api as JSON
	 * 
	 * @package Elgg
	 * @subpackage Core
	 * @author Curverider Ltd
	 * @link http://elgg.org/
	 * 
	 */

	$result = $vars['result'];
	$export = $result->export();
	
	// echo json_encode($export);
	global $jsonexport;
	$jsonexport['api'][] = $export;
	
?>