|
Revision 2, 1.0 kB
(checked in by sven, 3 years ago)
|
importing elgg-0.1.1a
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
// Parse REQUEST field |
|---|
| 6 |
$function['search:display'][] = path . "units/search/function_display.php"; |
|---|
| 7 |
$function['search:all:display'][] = path . "units/search/function_search_all_display.php"; |
|---|
| 8 |
$function['search:all:display:rss'][] = path . "units/search/function_search_all_display_rss.php"; |
|---|
| 9 |
$function['search:tags:display'][] = path . "units/search/tags_display.php"; |
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
$function['search:tags:suggest'][] = path . "units/search/search_suggest_tags.php"; |
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
$function['search:users:suggest'][] = path . "units/search/search_suggest_users.php"; |
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
$function['search:rss:suggest'][] = path . "units/search/search_suggest_rss.php"; |
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
// $function['profile:log_on_pane'][] = path . "units/weblogs/weblogs_user_info_menu.php"; |
|---|
| 22 |
$function['display:sidebar'][] = path . "units/search/search_user_info_menu.php"; |
|---|
| 23 |
?> |
|---|