aboutsummaryrefslogtreecommitdiff
path: root/mod/widgettest/start.php
blob: b02423b668be646c64c33b4ee0c07ba51737a8e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

	// TEMPORARY!
	
		function widgettest_init() {
			
			add_widget_type('widgettest',"Test widget!","This is a test widget.");
			
		}
		
		register_elgg_event_handler('init','system','widgettest_init');

?>