diff options
Diffstat (limited to 'views/default/search')
-rw-r--r-- | views/default/search/gallery_listing.php | 35 | ||||
-rw-r--r-- | views/default/search/listing.php | 14 |
2 files changed, 48 insertions, 1 deletions
diff --git a/views/default/search/gallery_listing.php b/views/default/search/gallery_listing.php new file mode 100644 index 000000000..3ebda7940 --- /dev/null +++ b/views/default/search/gallery_listing.php @@ -0,0 +1,35 @@ +<?php
+
+ /**
+ * Elgg search listing: gallery view
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ */
+
+?>
+
+ <div class="search_listing">
+
+ <div class="search_listing_header">
+
+ <?php
+
+ echo $vars['icon'];
+
+ ?>
+
+ </div>
+ <div class="search_listing_info">
+ <?php
+
+ echo $vars['info'];
+
+ ?>
+ </div>
+
+ </div>
\ No newline at end of file diff --git a/views/default/search/listing.php b/views/default/search/listing.php index 8ffad8ffa..4dcb3be34 100644 --- a/views/default/search/listing.php +++ b/views/default/search/listing.php @@ -11,6 +11,12 @@ * @link http://elgg.org/
*/
+ if (isset($vars['search_viewtype']) && $vars['search_viewtype'] == "gallery") {
+
+ echo elgg_view("search/gallery_listing",$vars);
+
+ } else {
+
?>
<div class="search_listing">
@@ -30,4 +36,10 @@ ?>
</div>
- </div>
\ No newline at end of file + </div>
+
+<?php
+
+ }
+
+?>
\ No newline at end of file |