aboutsummaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-11 18:28:39 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-11 18:28:39 +0000
commit71d37062c57d671ced4e0182ebbd90e7431c674b (patch)
treedb6f0c1dc44b7e67f7814bb950780a8e008b9dd5 /views
parent538a796fceaecd20c145b0912143a9066000e860 (diff)
downloadelgg-71d37062c57d671ced4e0182ebbd90e7431c674b.tar.gz
elgg-71d37062c57d671ced4e0182ebbd90e7431c674b.tar.bz2
The lists now go through the search/entity_list view.
git-svn-id: https://code.elgg.org/elgg/trunk@1407 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views')
-rw-r--r--views/default/search/entity_list.php50
-rw-r--r--views/rss/search/entity_list.php9
2 files changed, 59 insertions, 0 deletions
diff --git a/views/default/search/entity_list.php b/views/default/search/entity_list.php
new file mode 100644
index 000000000..50ef380e2
--- /dev/null
+++ b/views/default/search/entity_list.php
@@ -0,0 +1,50 @@
+<?php
+
+ $context = $vars['context'];
+ $offset = $vars['offset'];
+ $entities = $vars['entities'];
+ $limit = $vars['limit'];
+ $count = $vars['count'];
+ $baseurl = $vars['baseurl'];
+ $context = $vars['context'];
+ $viewtype = $vars['viewtype'];
+
+ if ($context == "search" && $count > 0) {
+ $nav .= elgg_view("navigation/viewtype",array(
+
+ 'baseurl' => $baseurl,
+ 'offset' => $offset,
+ 'count' => $count,
+ 'viewtype' => $viewtype,
+
+ ));
+ }
+
+ $nav .= elgg_view('navigation/pagination',array(
+
+ 'baseurl' => $baseurl,
+ 'offset' => $offset,
+ 'count' => $count,
+ 'limit' => $limit,
+
+ ));
+
+ $html .= $nav;
+
+ if ($viewtype == "list") {
+ if (is_array($entities) && sizeof($entities) > 0) {
+ foreach($entities as $entity) {
+ $html .= elgg_view_entity($entity, "", $fullview);
+ }
+ }
+ } else {
+ if (is_array($entities) && sizeof($entities) > 0)
+ $html .= elgg_view("search/gallery",array('entities' => $entities));
+ }
+
+ if ($count)
+ $html .= $nav;
+
+ echo $html;
+
+?> \ No newline at end of file
diff --git a/views/rss/search/entity_list.php b/views/rss/search/entity_list.php
new file mode 100644
index 000000000..8864b62da
--- /dev/null
+++ b/views/rss/search/entity_list.php
@@ -0,0 +1,9 @@
+<?php
+
+ $entities = $vars['entities'];
+ if (is_array($entities) && sizeof($entities) > 0) {
+ foreach($entities as $entity)
+ echo elgg_view_entity($entity);
+ }
+
+?> \ No newline at end of file