aboutsummaryrefslogtreecommitdiff
path: root/mod/invitefriends/start.php
blob: b7cd9868d91ff1242a31ac14746404385c1c685b (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
<?php

	/**
	 * Elgg invite page
	 * 
	 * @package ElggFile
	 * @author Curverider Ltd
	 * @copyright Curverider Ltd 2008-2010
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @link http://elgg.org/
	 */

	function invitefriends_pagesetup() {
		
		// Menu options
			global $CONFIG;
			if (get_context() == "friends" || 
				get_context() == "friendsof" || 
				get_context() == "collections") {
					
					add_submenu_item(elgg_echo('friends:invite'),$CONFIG->wwwroot."mod/invitefriends/",'invite');
					
				}
		
	}

	global $CONFIG;
	register_action('invitefriends/invite', false, $CONFIG->pluginspath . 'invitefriends/actions/invite.php');
	register_elgg_event_handler('pagesetup','system','invitefriends_pagesetup',1000);

?>