aboutsummaryrefslogtreecommitdiff
path: root/mod/search/views/default/search/entity_list.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/search/views/default/search/entity_list.php')
-rw-r--r--mod/search/views/default/search/entity_list.php66
1 files changed, 66 insertions, 0 deletions
diff --git a/mod/search/views/default/search/entity_list.php b/mod/search/views/default/search/entity_list.php
new file mode 100644
index 000000000..56291ba3a
--- /dev/null
+++ b/mod/search/views/default/search/entity_list.php
@@ -0,0 +1,66 @@
+<?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'];
+ $pagination = $vars['pagination'];
+ $fullview = $vars['fullview'];
+
+ $html = "";
+ $nav = "";
+
+ if (isset($vars['viewtypetoggle'])) {
+ $viewtypetoggle = $vars['viewtypetoggle'];
+ } else {
+ $viewtypetoggle = true;
+ }
+
+ if ($context == "search" && $count > 0 && $viewtypetoggle) {
+ $nav .= elgg_view("navigation/viewtype",array(
+
+ 'baseurl' => $baseurl,
+ 'offset' => $offset,
+ 'count' => $count,
+ 'viewtype' => $viewtype,
+
+ ));
+ }
+
+ if ($pagination)
+ $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) {
+ $ev = elgg_view_entity($entity, $fullview);
+
+ $html .= elgg_view('search/listing', array('entity_view' => $ev,
+ 'search_types' => $entity->getVolatileData('search')));
+
+ }
+ }
+ } else if ($viewtype == "gallery") {
+ if (is_array($entities) && sizeof($entities) > 0) {
+ $html .= elgg_view("search/gallery",array('entities' => $entities));
+ }
+ }
+
+ if ($count)
+ $html .= $nav;
+
+ echo $html;
+
+?>