|
Revision 1539, 1.4 kB
(checked in by renato, 10 months ago)
|
Setting prop svn:eol-style in LOTS of files.
|
- Property svn:mime-type set to
text/plain
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
/* |
|---|
| 3 |
* Created on Sep 19, 2007 |
|---|
| 4 |
* |
|---|
| 5 |
* @author Diego Andrés RamÃrez Aragón <diego@somosmas.org> |
|---|
| 6 |
* @copyright Corporación Somos más - 2007 |
|---|
| 7 |
*/ |
|---|
| 8 |
function search_pagesetup() { |
|---|
| 9 |
|
|---|
| 10 |
} |
|---|
| 11 |
function search_init() { |
|---|
| 12 |
global $CFG,$function; |
|---|
| 13 |
// ELGG Keyword search system |
|---|
| 14 |
|
|---|
| 15 |
// Parse REQUEST field |
|---|
| 16 |
$function['search:display'][] = $CFG->dirroot . "mod/search/lib/function_display.php"; |
|---|
| 17 |
$function['search:all:display'][] = $CFG->dirroot . "mod/search/lib/function_search_all_display.php"; |
|---|
| 18 |
$function['search:all:display:rss'][] = $CFG->dirroot . "mod/search/lib/function_search_all_display_rss.php"; |
|---|
| 19 |
$function['search:tags:display'][] = $CFG->dirroot . "mod/search/lib/tags_display.php"; |
|---|
| 20 |
$function['search:tags:personal:display'][] = $CFG->dirroot . "mod/search/lib/tags_display_personal.php"; |
|---|
| 21 |
|
|---|
| 22 |
// Suggest tags |
|---|
| 23 |
$function['search:tags:suggest'][] = $CFG->dirroot . "mod/search/lib/search_suggest_tags.php"; |
|---|
| 24 |
|
|---|
| 25 |
// Suggest users |
|---|
| 26 |
$function['search:users:suggest'][] = $CFG->dirroot . "mod/search/lib/search_suggest_users.php"; |
|---|
| 27 |
|
|---|
| 28 |
// Suggest RSS |
|---|
| 29 |
$function['search:rss:suggest'][] = $CFG->dirroot . "mod/search/lib/search_suggest_rss.php"; |
|---|
| 30 |
|
|---|
| 31 |
// Log on bar down the right hand side |
|---|
| 32 |
// $function['display:sidebar'][] = $CFG->dirroot . "mod/search/lib/search_user_info_menu.php"; |
|---|
| 33 |
|
|---|
| 34 |
// Actions to perform when an access group is deleted |
|---|
| 35 |
$function['groups:delete'][] = $CFG->dirroot . "mod/search/lib/groups_delete.php"; |
|---|
| 36 |
|
|---|
| 37 |
} |
|---|
| 38 |
?> |
|---|