From 34e28b1ccb73cb488f36cec692c854f9502cdd18 Mon Sep 17 00:00:00 2001 From: brettp Date: Fri, 9 Oct 2009 20:43:39 +0000 Subject: Reverted back to previous copy removing Justin's search because of views problems in plugins. git-svn-id: http://code.elgg.org/elgg/trunk@3521 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/default/search/entity_list.php | 62 ++++++++++++++++++++++++++++++++ views/default/search/gallery.php | 49 +++++++++++++++++++++++++ views/default/search/gallery_listing.php | 35 ++++++++++++++++++ views/default/search/listing.php | 45 +++++++++++++++++++++++ views/default/search/startblurb.php | 8 +++++ 5 files changed, 199 insertions(+) create mode 100644 views/default/search/entity_list.php create mode 100644 views/default/search/gallery.php create mode 100644 views/default/search/gallery_listing.php create mode 100644 views/default/search/listing.php create mode 100644 views/default/search/startblurb.php (limited to 'views/default/search') diff --git a/views/default/search/entity_list.php b/views/default/search/entity_list.php new file mode 100644 index 000000000..f0438fa11 --- /dev/null +++ b/views/default/search/entity_list.php @@ -0,0 +1,62 @@ + 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) { + $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; + +?> diff --git a/views/default/search/gallery.php b/views/default/search/gallery.php new file mode 100644 index 000000000..366cd713b --- /dev/null +++ b/views/default/search/gallery.php @@ -0,0 +1,49 @@ + 0) { + +?> + + + +"; + + } + echo ""; + $col++; + if ($col > 3) { + echo ""; + $col = 0; + } + } + if ($col > 0) echo ""; + +?> + + + + \ No newline at end of file diff --git a/views/default/search/gallery_listing.php b/views/default/search/gallery_listing.php new file mode 100644 index 000000000..4c0f40643 --- /dev/null +++ b/views/default/search/gallery_listing.php @@ -0,0 +1,35 @@ + + +
+ +
+ + + +
+
+ +
+ +
\ No newline at end of file diff --git a/views/default/search/listing.php b/views/default/search/listing.php new file mode 100644 index 000000000..0a9d01fee --- /dev/null +++ b/views/default/search/listing.php @@ -0,0 +1,45 @@ + + +
+ +
+ +
+
+ +
+ +
+ + \ No newline at end of file diff --git a/views/default/search/startblurb.php b/views/default/search/startblurb.php new file mode 100644 index 000000000..82b4aef8c --- /dev/null +++ b/views/default/search/startblurb.php @@ -0,0 +1,8 @@ + +
+ +
\ No newline at end of file -- cgit v1.2.3