root/releases/0.1.2a/units/friends/main.php

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     // Get list of friends
12         $function['friends:get'][] = path . "units/friends/get_friends.php";
13         
14     // 'Friends' aspect to the little menus beneath peoples' icons
15         $function['users:infobox:menu'][] = path . "units/friends/user_info_menu.php";
16     
17     // 'Friends' list in the portfolio view
18         $function['profile:log_on_pane'][] = path . "units/friends/profile_friends.php";
19         $function['display:sidebar'][] = path . "units/friends/profile_friends.php";
20         
21     // Friends full view / edit section
22         $function['friends:editpage'][] = path . "units/friends/friends_edit_wrapper.php";
23         $function['friends:edit'][] = path . "units/friends/friends_edit.php";
24     // 'Friends of' full view / edit section
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     // Menu button
29         $function['menu:main'][] = path . "units/friends/menu_main.php";   
30
31     // FOAF file
32         $function['foaf:generate'][] = path . "units/friends/generate_foaf.php";
33             
34 ?>
Note: See TracBrowser for help on using the browser.