|
Revision 2, 1.3 kB
(checked in by sven, 3 years ago)
|
importing elgg-0.1.1a
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
* Friends plug-in |
|---|
| 5 |
*/ |
|---|
| 6 |
|
|---|
| 7 |
// Functions to perform upon initialisation |
|---|
| 8 |
$function['friends:init'][] = path . "units/friends/friends_init.php"; |
|---|
| 9 |
$function['friends:init'][] = path . "units/friends/friends_actions.php"; |
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
$function['friends:get'][] = path . "units/friends/get_friends.php"; |
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
$function['users:infobox:menu'][] = path . "units/friends/user_info_menu.php"; |
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
$function['profile:log_on_pane'][] = path . "units/friends/profile_friends.php"; |
|---|
| 19 |
$function['display:sidebar'][] = path . "units/friends/profile_friends.php"; |
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
$function['friends:editpage'][] = path . "units/friends/friends_edit_wrapper.php"; |
|---|
| 23 |
$function['friends:edit'][] = path . "units/friends/friends_edit.php"; |
|---|
| 24 |
|
|---|
| 25 |
$function['friends:editpage'][] = path . "units/friends/friends_of_edit_wrapper.php"; |
|---|
| 26 |
$function['friends:of:edit'][] = path . "units/friends/friends_of_edit.php"; |
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 |
$function['menu:main'][] = path . "units/friends/menu_main.php"; |
|---|
| 30 |
|
|---|
| 31 |
|
|---|
| 32 |
$function['foaf:generate'][] = path . "units/friends/generate_foaf.php"; |
|---|
| 33 |
|
|---|
| 34 |
?> |
|---|