aboutsummaryrefslogtreecommitdiff
path: root/mod/invitefriends/start.php
blob: 19a4c4b55abb8e25858aa74100eb74661905b471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
 * Elgg invite friends
 *
 * @package ElggInviteFriends
 */

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

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