blob: 45b2d847ae7f08dd72ed128cc5c0a5c1c04d22a7 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<?php
/**
* Elgg default object view
*
* @package Elgg
* @subpackage Core
* @author Curverider Ltd
* @link http://elgg.org/
*/
elgg_load_library('elgg:event_calendar');
$title = $vars['entity']->title;
$event_items = event_calendar_get_formatted_full_items($vars['entity']);
$items = array();
foreach($event_items as $item) {
if (trim($item->value)) {
$items[] = '<b>'.$item->title.'</b>: '.$item->value;
}
}
$description = '<p>'.implode('<br />',$items).'</p>';
if ($vars['entity']->long_description) {
$description .= '<p>'.autop($vars['entity']->long_description).'</p>';
} else {
$description .= '<p>'.$vars['entity']->description.'</p>';
}
?>
<item>
<guid isPermaLink='true'><?php echo htmlspecialchars($vars['entity']->getURL()); ?></guid>
<link><?php echo htmlspecialchars($vars['entity']->getURL()); ?></link>
<title><![CDATA[<?php echo $title; ?>]]></title>
<description><![CDATA[<?php echo $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>
|