diff options
author | cash <cash.costello@gmail.com> | 2011-10-29 13:01:05 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-10-29 13:01:05 -0400 |
commit | e01240611f2a94d0a194235f2f83323049ad1a74 (patch) | |
tree | 311afd784f4c3e4f99dbfe5a06123d3fefb2842a /views/json/river/item/list.php | |
parent | 96fa5ba183d4ea5fb01d4f5a44c808dcb3291b72 (diff) | |
download | elgg-e01240611f2a94d0a194235f2f83323049ad1a74.tar.gz elgg-e01240611f2a94d0a194235f2f83323049ad1a74.tar.bz2 |
Refs #3201 updates json river views and removed old search view
Diffstat (limited to 'views/json/river/item/list.php')
-rw-r--r-- | views/json/river/item/list.php | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/views/json/river/item/list.php b/views/json/river/item/list.php deleted file mode 100644 index c79cd1042..000000000 --- a/views/json/river/item/list.php +++ /dev/null @@ -1,45 +0,0 @@ -<?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; |