root/releases/0.1.1b/units/profile/main.php

Revision 2, 2.0 kB (checked in by sven, 3 years ago)

importing elgg-0.1.1a

Line 
1 <?php
2
3     // ELGG Profile system
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     // Initialisation for the search function
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     // Function to search through profiles
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     // Functions to view and edit individual profile fields       
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     // Function to edit all profile fields
25         $function['profile:edit'][] = path . "units/profile/function_edit.php";
26         
27     // Function to view all profile fields
28         $function['profile:view'][] = path . "units/profile/function_view.php";
29         
30     // Function to display user's name
31         $function['profile:display:name'][] = path . "units/profile/function_display_name.php";
32     
33     // "View" and "Edit" buttons
34         $function['menu:main'][] = path . "units/profile/menu_main.php";
35     
36     // Descriptive text
37         $function['content:profile:edit'][] = path . "units/profile/content_edit.php";
38 /*   
39     // Log on bar down the right hand side
40         $function['profile:log_on_pane'][] = path . "units/profile/profile_user_info.php";
41         $function['display:sidebar'][] = path . "units/profile/profile_user_info.php";
42 */       
43         
44 ?>
Note: See TracBrowser for help on using the browser.