aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/search.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-10-09 19:33:33 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-10-09 19:33:33 +0000
commitf9aa70c258578d907cdeb1e9d5b26fffca5bede6 (patch)
tree35596f164c262cc6d2f653ff16f7fa650118f186 /engine/lib/search.php
parentb62012bf3da994298ad52a4ccec06e814bcc5a79 (diff)
downloadelgg-f9aa70c258578d907cdeb1e9d5b26fffca5bede6.tar.gz
elgg-f9aa70c258578d907cdeb1e9d5b26fffca5bede6.tar.bz2
Pulled in Justin's search changes from github.
git-svn-id: http://code.elgg.org/elgg/trunk@3520 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/search.php')
-rw-r--r--engine/lib/search.php50
1 files changed, 0 insertions, 50 deletions
diff --git a/engine/lib/search.php b/engine/lib/search.php
deleted file mode 100644
index 222c0b6e9..000000000
--- a/engine/lib/search.php
+++ /dev/null
@@ -1,50 +0,0 @@
-<?php
- /**
- * Elgg search helper functions.
- *
- * @package Elgg
- * @subpackage Core
- * @author Curverider Ltd <info@elgg.com>
- * @link http://elgg.org/
- */
-
- /**
- * Initialise search helper functions.
- *
- */
- function search_init()
- {
- register_page_handler('search','search_page_handler');
- }
-
- /**
- * Page handler for search
- *
- * @param array $page Page elements from pain page handler
- */
- function search_page_handler($page)
- {
- global $CONFIG;
-
- if(!get_input('tag')) {
- set_input('tag', $page[0]);
- }
-
- if (isset($page[0])) {
- switch ($page[0]) {
- case 'user' :
- case 'users' : include_once($CONFIG->path . "search/users.php"); break;
-
- case 'group' :
- case 'groups' : include_once($CONFIG->path . "search/groups.php"); break;
-
- default: include_once($CONFIG->path . "search/index.php");
- }
- }
- else
- include_once($CONFIG->path . "search/index.php");
- }
-
- /** Register init system event **/
- register_elgg_event_handler('init','system','search_init');
-?>