aboutsummaryrefslogtreecommitdiff
path: root/mod/search/views/rss/search/entity.php
blob: 10d28e8e1192590e9f43f1273d3e37f17a221c98 (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
<?php
/**
 * Search entity view for RSS feeds.
 *
 * @uses $vars['entity']
 */

if (!array_key_exists('entity', $vars) || !($vars['entity'] instanceof ElggEntity)) {
	return FALSE;
}

// title cannot contain HTML but descriptions can.
$title = strip_tags($vars['entity']->getVolatileData('search_matched_title'));
$description = $vars['entity']->getVolatileData('search_matched_description');

?>

<item>
	<guid isPermaLink='true'><?php echo htmlspecialchars($vars['entity']->getURL()); ?></guid>
	<pubDate><?php echo date("r", $vars['entity']->time_created) ?></pubDate>
	<link><?php echo htmlspecialchars($vars['entity']->getURL()); ?></link>
	<title><![CDATA[<?php echo $title; ?>]]></title>
	<description><![CDATA[<?php	echo $description; ?>]]></description>
</item>