aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/elgglib.php
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 /engine/lib/elgglib.php
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 'engine/lib/elgglib.php')
-rw-r--r--engine/lib/elgglib.php52
1 files changed, 11 insertions, 41 deletions
diff --git a/engine/lib/elgglib.php b/engine/lib/elgglib.php
index a529921ce..da0699cf8 100644
--- a/engine/lib/elgglib.php
+++ b/engine/lib/elgglib.php
@@ -359,49 +359,19 @@
$offset = (int) $offset;
$limit = (int) $limit;
- $html = "";
-
$context = get_context();
- $nav = "";
-
- if ($context == "search" && $count > 0) {
- $viewtype = get_input('search_viewtype','list');
- $nav .= elgg_view("navigation/viewtype",array(
-
- 'baseurl' => $_SERVER['REQUEST_URI'],
- 'offset' => $offset,
- 'count' => $count,
- 'viewtype' => $viewtype,
-
- ));
- }
-
- $nav .= elgg_view('navigation/pagination',array(
-
- 'baseurl' => $_SERVER['REQUEST_URI'],
- '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;
-
+ $html = elgg_view('search/entity_list',array(
+ 'entities' => $entities,
+ 'count' => $count,
+ 'offset' => $offset,
+ 'limit' => $limit,
+ 'baseurl' => $_SERVER['REQUEST_URI'],
+ 'fullview' => $fullview,
+ 'context' => $context,
+ 'viewtype' => get_input('search_viewtype','list'),
+ ));
+
return $html;
}