aboutsummaryrefslogtreecommitdiff
path: root/mod/reportedcontent/start.php
blob: 22d93dbe150b6f70709acdbea2ceda6637ea84eb (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
52
53
54
55
56
<?php
/**
 * Elgg Reported content.
 * 
 * @package ElggReportedContent
 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
 * @author Curverider Ltd
 * @copyright Curverider Ltd 2008-2010
 * @link http://elgg.com/
 */

/**
 * Initialise the Reported content and set up the menus.
 *
 */
function reportedcontent_init() {
	global $CONFIG;
	
	// Register a page handler, so we can have nice URLs
	register_page_handler('reportedcontent', 'reportedcontent_page_handler');
	
	// Extend CSS
	elgg_extend_view('css', 'reportedcontent/css');
			
	// Extend context menu and footer with report content link
	if (isloggedin()) {
	    elgg_extend_view('profile/menu/links', 'reportedcontent/user_report');
		elgg_extend_view('footer/links', 'reportedcontent/footer_link');
	}
	
	elgg_add_submenu_item(array(
		'text' => elgg_echo('reportedcontent'),
		'href' => "{$CONFIG->wwwroot}pg/reportedcontent",
		'parent_id' => 'overview',
	), 'admin', 'default');
}

/**
 * Reported content page handler
 *
 * @param array $page Array of page elements, forwarded by the page handling mechanism
 */
function reportedcontent_page_handler($page) {
	global $CONFIG;
	
	// only interested in one page for now
	include($CONFIG->pluginspath . "reportedcontent/index.php"); 
}

// Initialise Reported Content
register_elgg_event_handler('init','system','reportedcontent_init');

//register action
register_action('reportedcontent/add',false,$CONFIG->pluginspath . "reportedcontent/actions/add.php");
register_action('reportedcontent/delete',false,$CONFIG->pluginspath . "reportedcontent/actions/delete.php");
register_action('reportedcontent/archive',false,$CONFIG->pluginspath . "reportedcontent/actions/archive.php");