aboutsummaryrefslogtreecommitdiff
path: root/mod/invitefriends/start.php
blob: 6bdedcffa976371fe6ee447fa89cd636bd3e7594 (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
<?php
/**
 * Elgg invite friends
 *
 * @package ElggInviteFriends
 * @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/
 */

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

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