aboutsummaryrefslogtreecommitdiff
path: root/mod/riverdashboard/start.php
blob: 6badd8393b9e4210e288f5e83ad4b528a23c05a2 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
 * Elgg river dashboard plugin
 */

function riverdashboard_init() {
	global $CONFIG;
	// Register and optionally replace the dashboard
	if (get_plugin_setting('useasdashboard', 'riverdashboard') == 'yes') {
		register_page_handler('dashboard','riverdashboard_page_handler');
	} else {
		// Activity main menu
		add_menu(elgg_echo('activity'), $CONFIG->wwwroot . "mod/riverdashboard/");
	}	
	// Page handler
	register_page_handler('riverdashboard','riverdashboard_page_handler');
	elgg_extend_view('css','riverdashboard/css');
}
		
/**
 * Page handler for riverdash
 *
 * @param unknown_type $page
 */
function riverdashboard_page_handler($page){
	global $CONFIG;
	include(dirname(__FILE__) . "/index.php");
	return true;
}
		
function riverdashboard_dashboard() {
	include(dirname(__FILE__) . '/index.php');
}

/**
 * For users to make a comment on a river item
 *
 * @param ElggEntity $entity The entity to comment on
 * @return string|false The HTML (etc) for the comment form, or false on failure
 */
function elgg_make_river_comment($entity){
	if (!($entity instanceof ElggEntity)) {
		return false;
	} else {
		//display the comment form
		$comments = elgg_view('riverdashboard/rivercomment',array('entity' => $entity));
		return $comments;
	}
}

register_elgg_event_handler('init','system','riverdashboard_init');