aboutsummaryrefslogtreecommitdiff
path: root/mod/messageboard/actions/delete.php
blob: c903a0d2082056c23c87306de5ca7329f1658c26 (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
32
33
34
35
36
37
38
39
40
41
<?php

/**
 * Elgg Message board: delete message action
 *
 * @package ElggMessageBoard
 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
 * @author Curverider Ltd <info@elgg.com>
 * @copyright Curverider Ltd 2008-2010
 * @link http://elgg.org/
 */

// 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 message board 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 message board
	if ($message->canEdit()) {
		//delete the comment
		$message->delete();
		// delete river entry
		remove_from_river_by_annotation($annotation_id);
		//display message
		system_message(elgg_echo("messageboard:deleted"));
		//generate the url to forward to
		$url = "pg/messageboard/" . $entity->username;
		//forward the user back to their message board
		forward($url);
	}

} else {
	$url = "";
	system_message(elgg_echo("messageboard:notdeleted"));
}

forward($url);