blob: 8ff34b7fa28992a3a31ed0278b6a4610290cc343 (
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
|
<?php
/**
* Elgg generic comment
*
* @package Elgg
* @subpackage Core
* @author Curverider Ltd
* @link http://elgg.org/
*
*/
$vars['entity'] = get_entity($vars['annotation']->entity_guid);
$title = substr($vars['annotation']->value, 0, 32);
if (strlen($vars['annotation']->value) > 32) {
$title .= " ...";
}
?>
<item>
<guid isPermaLink='true'><?php echo $vars['entity']->getURL(); ?>#<?php echo $vars['annotation']->id; ?></guid>
<pubDate><?php echo date("r",$vars['entity']->time_created) ?></pubDate>
<link><?php echo $vars['entity']->getURL(); ?>#<?php echo $vars['annotation']->id; ?></link>
<title><![CDATA[<?php echo $title; ?>]]></title>
<description><![CDATA[<?php echo (autop($vars['annotation']->value)); ?>]]></description>
<?php
$owner = get_entity($vars['entity']->owner);
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>
|