blob: 54675ee2fa8c22a9f37b3e0f6dde6d7a5b2dbfc8 (
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() {
elgg_register_widget_type('friends', elgg_echo("friends"), elgg_echo('friends:widget:description'));
}
elgg_register_event_handler('init', 'system', 'friends_init');
|