aboutsummaryrefslogtreecommitdiff
path: root/mod/friends/start.php
blob: 631b54c1d1e7ae46be144624b4110576c490abb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php

	/**
	 * Elgg Friends widget
	 * This plugin allows users to put a list of their friends, on their profile
	 * 
	 * @package ElggFriends
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Curverider Ltd <info@elgg.com>
	 * @copyright Curverider Ltd 2008-2010
	 * @link http://elgg.com/
	 */
	
		function friends_init() {
    		
    		// Load system configuration
				global $CONFIG;
    		
    		//add a widget
			    add_widget_type('friends',elgg_echo("friends"),elgg_echo('friends:widget:description'));
			
		}
		
		register_elgg_event_handler('init','system','friends_init');
        
?>