aboutsummaryrefslogtreecommitdiff
path: root/mod/bookmarks/actions/delete.php
blob: 5a35d44f5983c5fe326a161046b1cb9fea711fb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
 * Elgg bookmarks delete action
 * 
 * @package ElggBookmarks
 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
 * @author Curverider <info@elgg.com>
 * @copyright Curverider Ltd 2008-2010
 * @link http://elgg.org/
 */

$guid = get_input('bookmark_guid',0);
if ($entity = get_entity($guid)) {
	if ($entity->canEdit()) {
		if ($entity->delete()) {
			system_message(elgg_echo("bookmarks:delete:success"));
			forward($_SERVER['HTTP_REFERER']);				
		}
	}
}
		
register_error(elgg_echo("bookmarks:delete:failed"));
forward($_SERVER['HTTP_REFERER']);