blob: bddd41d7d8b01b7138751d60c8131fd39efe45fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
/**
* Elgg identi.ca widget
* This plugin allows users to pull in their identi.ca feed to display on their profile
*
* @package ElggIdentica
*/
elgg_register_event_handler('init', 'system', 'identica_init');
function identica_init() {
elgg_extend_view('css/elgg', 'identica/css');
elgg_register_widget_type('identica', elgg_echo('identica:title'), elgg_echo('identica:info'));
}
|