aboutsummaryrefslogtreecommitdiff
path: root/mod/tagcloud/start.php
blob: 663cec0e661198694324f8b45a273b9c5c7b8070 (plain)
1
2
3
4
5
6
7
8
9
10
<?php
/**
 * Tagcloud plugin
 */

elgg_register_event_handler('init', 'system', 'tagcloud_init');

function tagcloud_init() {
	elgg_register_widget_type('tagcloud', elgg_echo('tagcloud:widget:title'), elgg_echo('tagcloud:widget:description'));
}