blob: c79cd104213715e09804a69319d398ff24ff1029 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<?php
/**
* JSON river view
*
* @package Elgg
* @subpackage Core
*/
global $jsonexport;
$json_items = array();
if (isset($vars['items']) && is_array($vars['items'])) {
$i = 0;
if (!empty($vars['items'])) {
foreach($vars['items'] as $item) {
$json_entry = array(
'subject' => NULL,
'object' => NULL,
'type' => NULL,
'subtype' => NULL,
'action_type' => NULL,
'view' => NULL,
'annotation' => NULL,
'timestamp' => NULL,
'string' => NULL
);
if (elgg_view_exists($item->view, 'default')) {
$json_entry['string'] = elgg_view($item->view, array('item' => $item), FALSE, FALSE, 'default');
$json_entry['timestamp'] = (int)$item->posted;
}
$json_items[] = $json_entry;
$i++;
if ($i >= $vars['limit']) {
break;
}
}
}
}
$jsonexport['activity'] = $json_items;
|