blob: 8577987985d8dd0ac795ba115121c5725fe9619a (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 | <?php
/**
 * Elgg demo custom index page plugin
 * 
 */
register_elgg_event_handler('init', 'system', 'custom_index_init');
function custom_index_init() {
	// Extend system CSS with our own styles
	elgg_extend_view('css/elgg', 'custom_index/css');
	// Replace the default index page
	register_plugin_hook('index', 'system', 'custom_index');
}
function custom_index($hook, $type, $return, $params) {
	if ($return == true) {
		// another hook has already replaced the front page
		return $return;
	}
	if (!include_once(dirname(__FILE__) . "/index.php")) {
		return false;
	}
	// return true to signify that we have handled the front page
	return true;
}
 |