aboutsummaryrefslogtreecommitdiff
path: root/search
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-05-22 14:07:05 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-05-22 14:07:05 +0000
commit6615b6f4d827811046564cd004bd167b4c3c38bf (patch)
treea8b13babab0bb2741e9612f46d0e6a113bd29026 /search
parent18dd81e15a1159e73f0371e91b62640db3f5e9bf (diff)
downloadelgg-6615b6f4d827811046564cd004bd167b4c3c38bf.tar.gz
elgg-6615b6f4d827811046564cd004bd167b4c3c38bf.tar.bz2
Closes #1030: Group title and description search added, refs #965
git-svn-id: https://code.elgg.org/elgg/trunk@3300 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'search')
-rw-r--r--search/groups.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/search/groups.php b/search/groups.php
new file mode 100644
index 000000000..e04a14606
--- /dev/null
+++ b/search/groups.php
@@ -0,0 +1,40 @@
+<?php
+
+ /**
+ * Generic search viewer
+ * Given a GUID, this page will try and display any entity
+ *
+ * @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-2009
+ * @link http://elgg.org/
+ */
+
+ // Load Elgg engine
+ require_once(dirname(dirname(__FILE__)) . "/engine/start.php");
+
+ // Set context
+ set_context('search');
+
+ // Get input
+ $tag = get_input('tag');
+
+ if (!empty($tag)) {
+ $title = sprintf(elgg_echo('users:searchtitle'),$tag);
+ $body = "";
+ $body .= elgg_view_title($title); // elgg_view_title(sprintf(elgg_echo('searchtitle'),$tag));
+ $body .= elgg_view('group/search/startblurb',array('tag' => $tag));
+ $body .= list_group_search($tag);
+ //$body = elgg_view_layout('two_column_left_sidebar','',$body);
+ } else {
+ $title = elgg_echo('item:group');
+ $body .= elgg_view_title($title);
+ $body .= list_entities('groups');
+ }
+
+ $body = elgg_view_layout('two_column_left_sidebar','',$body);
+ page_draw($title,$body);
+
+?> \ No newline at end of file