aboutsummaryrefslogtreecommitdiff
path: root/views/rss/river/item/list.php
blob: c74a99f970955ec42b2cf1455b5666c9351f821d (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
<?php

	if (isset($vars['items']) && is_array($vars['items'])) {
		
		$i = 0;
		if (!empty($vars['items']))
		foreach($vars['items'] as $item) {
			
			// echo elgg_view_river_item($item);
			if (elgg_view_exists($item->view,'default')) {
				$body = elgg_view($item->view,array(
									'item' => $item
								 ),false,false,'default');
				$time = date("r",$item->posted);
				if ($entity = get_entity($item->object_guid)) {
					$url = htmlspecialchars($entity->getURL());
				} else {
					$url = $vars['url'];
				}
				$title = strip_tags($body);
				
?>
	<item>
	  <guid isPermaLink='true'><?php echo $url; ?></guid>
	  <pubDate><?php echo $time; ?></pubDate>
	  <link><?php echo $url; ?></link>
	  <title><![CDATA[<?php echo $title; ?>]]></title>
	  <description><![CDATA[<?php echo (autop($body)); ?>]]></description>
	</item>
<?php
				
			}
			
			$i++;
			if ($i >= $vars['limit']) break;
			
		}
		
	}
	

?>