aboutsummaryrefslogtreecommitdiff
path: root/mod/search/views/rss/search/entity.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-01-12 02:37:17 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-01-12 02:37:17 +0000
commiteda84204fbe210f4d88296954a33fa5e310194d2 (patch)
tree12c8a0305bae91d66fe7fd03f217853d8b8c7528 /mod/search/views/rss/search/entity.php
parent36b73bf25407fbc0591d33d3b0d39059bdce7005 (diff)
downloadelgg-eda84204fbe210f4d88296954a33fa5e310194d2.tar.gz
elgg-eda84204fbe210f4d88296954a33fa5e310194d2.tar.bz2
Added phpdoc header to index.php
Added RSS support to search. Nifty. git-svn-id: http://code.elgg.org/elgg/trunk@3800 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/search/views/rss/search/entity.php')
-rw-r--r--mod/search/views/rss/search/entity.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/mod/search/views/rss/search/entity.php b/mod/search/views/rss/search/entity.php
new file mode 100644
index 000000000..8c3609fe5
--- /dev/null
+++ b/mod/search/views/rss/search/entity.php
@@ -0,0 +1,32 @@
+<?php
+/**
+ * Elgg core search.
+ * Search entity view for RSS feeds.
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @author Curverider Ltd <info@elgg.com>, The MITRE Corporation <http://www.mitre.org>
+ * @link http://elgg.org/
+ */
+
+$title = $vars['entity']->title;
+if (empty($title)) {
+ $title = substr($vars['entity']->description, 0, 32);
+ if (strlen($vars['entity']->description) > 32) {
+ $title .= " ...";
+ }
+}
+
+?>
+
+<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
+ $summary = $vars['entity']->summary;
+ if (!empty($summary)) echo wpautop($summary);
+ echo (autop($vars['entity']->description));
+?>]]></description>
+</item>