aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/actions/deletecomment.php
blob: 233d53069a2eb1cf4e0478bedf8de537ddaf9edc (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
<?php
/**
 * Elgg profile commentwall: delete message action
 */

// Ensure we're logged in
if (!isloggedin()) forward();
		
// Make sure we can get the comment in question
$annotation_id = (int) get_input('annotation_id');
		
//make sure that there is a message on the commentwall matching the passed id
if ($message = get_annotation($annotation_id)) {
	//grab the user or group entity
	$entity = get_entity($message->entity_guid);
   //check to make sure the current user can actually edit the commentwall
	if ($message->canEdit()) {
   			//delete the comment
			$message->delete();
			//display message
			system_message(elgg_echo("profile:commentwall:deleted"));
			forward(REFERER);
	}
		
} else {
	system_message(elgg_echo("profile:commentwall:notdeleted"));
}
		
forward(REFERER);