blob: ca30f0c38647b45b256966b16d76280616192754 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
/**
* Elgg twitter widget
* This plugin allows users to pull in their twitter feed to display on their profile
*
* @package ElggTwitter
*/
register_elgg_event_handler('init', 'system', 'twitter_init');
function twitter_init() {
elgg_extend_view('css/elgg', 'twitter/css');
add_widget_type('twitter', elgg_echo('twitter:title'), elgg_echo('twitter:info'));
}
|