blob: fe6a40c756511f7c4723bf12f7bc7b093c6d9a34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
/**
* Elgg Friends widget
* This plugin allows users to put a list of their friends on their profile
*
* @package ElggFriends
*/
function friends_init() {
add_widget_type('friends', elgg_echo("friends"), elgg_echo('friends:widget:description'));
}
elgg_register_event_handler('init', 'system', 'friends_init');
|