aboutsummaryrefslogtreecommitdiff
path: root/mod/thewire/views/rss/object/thewire.php
blob: 23a11a9d398cd0c3949f5d6abb52b2f36119e702 (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
46
47
48
<?php
/**
 * Elgg thewire rss view
 *
 * @package Elgg
 * @subpackage Core
 */

$owner = $vars['entity']->getOwnerEntity();
if ($owner) {
	$title = sprintf(elgg_echo('thewire:by'), $owner->name);
} else {
	$subtitle = strip_tags($vars['entity']->description);
	$title = substr($subtitle,0,32);
	if (strlen($subtitle) > 32) {
		$title .= " ...";
	}
}

?>

<item>
<guid isPermaLink='false'><?php echo $vars['entity']->getGUID(); ?></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 (autop($vars['entity']->description)); ?>]]></description>
<?php
		$owner = $vars['entity']->getOwnerEntity();
		if ($owner) {
?>
<dc:creator><?php echo $owner->name; ?></dc:creator>
<?php
		}
?>
<?php
		if (
			($vars['entity'] instanceof Locatable) &&
			($vars['entity']->getLongitude()) &&
			($vars['entity']->getLatitude())
		) {
			?>
			<georss:point><?php echo $vars['entity']->getLatitude(); ?> <?php echo $vars['entity']->getLongitude(); ?></georss:point>
			<?php
		}
?>
<?php echo elgg_view('extensions/item'); ?>
</item>