From eda84204fbe210f4d88296954a33fa5e310194d2 Mon Sep 17 00:00:00 2001 From: brettp Date: Tue, 12 Jan 2010 02:37:17 +0000 Subject: 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 --- mod/search/index.php | 8 ++++++++ mod/search/views/rss/search/entity.php | 32 ++++++++++++++++++++++++++++++++ mod/search/views/rss/search/listing.php | 28 ++++++++++++++++++++++++++++ 3 files changed, 68 insertions(+) create mode 100644 mod/search/views/rss/search/entity.php create mode 100644 mod/search/views/rss/search/listing.php diff --git a/mod/search/index.php b/mod/search/index.php index adf514caf..4f1aa3dbf 100644 --- a/mod/search/index.php +++ b/mod/search/index.php @@ -1,4 +1,12 @@ , The MITRE Corporation + * @link http://elgg.org/ + */ // $search_type == all || entities || trigger plugin hook $search_type = get_input('search_type', 'all'); 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 @@ +, The MITRE Corporation + * @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 .= " ..."; + } +} + +?> + + +getURL()); ?> +time_created) ?> +getURL()); ?> +<![CDATA[<?php echo $title; ?>]]> +summary; + if (!empty($summary)) echo wpautop($summary); + echo (autop($vars['entity']->description)); +?>]]> + diff --git a/mod/search/views/rss/search/listing.php b/mod/search/views/rss/search/listing.php new file mode 100644 index 000000000..40aae018d --- /dev/null +++ b/mod/search/views/rss/search/listing.php @@ -0,0 +1,28 @@ +, The MITRE Corporation + * @link http://elgg.org/ + */ + +$entities = $vars['results']['entities']; + +if (!is_array($entities) || !count($entities)) { + return FALSE; +} + +foreach ($entities as $entity) { + if ($view = search_get_search_view($vars['params'], 'entity')) { + $body .= elgg_view($view, array( + 'entity' => $entity, + 'params' => $vars['params'], + 'results' => $vars['results'] + )); + } +} + +echo $body; \ No newline at end of file -- cgit v1.2.3