blob: b936477b2a77190009b30b9fb78d9e3a8a689905 (
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'));
}
register_elgg_event_handler('init', 'system', 'friends_init');
|