aboutsummaryrefslogtreecommitdiff
path: root/documentation/examples/plugins/start.php
blob: ea1e894b2e77201aa3e94c4a761cbf16cb01cd2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
/**
 * Describe plugin here
 */

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

function my_plugin_init() {
	// Rename this function based on the name of your plugin and update the
	// elgg_register_event_handler() call accordingly
	
}