|
Revision 2, 2.0 kB
(checked in by sven, 3 years ago)
|
importing elgg-0.1.1a
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
// Profile initialisation |
|---|
| 6 |
$function['profile:init'][] = path . "units/profile/function_init.php"; |
|---|
| 7 |
$function['profile:init'][] = path . "units/profile/function_editfield_defaults.php"; |
|---|
| 8 |
$function['profile:init'][] = path . "units/profile/function_actions.php"; |
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
$function['search:init'][] = path . "units/profile/function_init.php"; |
|---|
| 12 |
$function['search:init'][] = path . "units/profile/function_editfield_defaults.php"; |
|---|
| 13 |
$function['search:all:tagtypes'][] = path . "units/profile/function_search_all_tagtypes.php"; |
|---|
| 14 |
$function['search:all:tagtypes:rss'][] = path . "units/profile/function_search_all_tagtypes_rss.php"; |
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
$function['search:display_results'][] = path . "units/profile/function_search.php"; |
|---|
| 18 |
$function['search:display_results:rss'][] = path . "units/profile/function_search_rss.php"; |
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
$function['profile:editfield:display'][] = path . "units/profile/function_editfield_display.php"; |
|---|
| 22 |
$function['profile:field:display'][] = path . "units/profile/function_field_display.php"; |
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
$function['profile:edit'][] = path . "units/profile/function_edit.php"; |
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
$function['profile:view'][] = path . "units/profile/function_view.php"; |
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
$function['profile:display:name'][] = path . "units/profile/function_display_name.php"; |
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 |
$function['menu:main'][] = path . "units/profile/menu_main.php"; |
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| 37 |
$function['content:profile:edit'][] = path . "units/profile/content_edit.php"; |
|---|
| 38 |
|
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 |
|
|---|
| 43 |
|
|---|
| 44 |
?> |
|---|