aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/actions/groupskillinvitation.php
blob: c5f1d9bf5518348159a2e13dcea6323543d6ad65 (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
<?php
	/**
	 * Delete an invitation to join a closed group.
	 *
	 * @package ElggGroups
	 */

	// Load configuration
	global $CONFIG;

	$user_guid = get_input('user_guid', get_loggedin_userid());
	$group_guid = get_input('group_guid');

	$user = get_entity($user_guid);
	$group = get_entity($group_guid);

	// If join request made
			if (check_entity_relationship($group->guid, 'invited', $user->guid))
			{
				remove_entity_relationship($group->guid, 'invited', $user->guid);
				system_message(elgg_echo("groups:invitekilled"));
			}

	forward(REFERER);

?>