aboutsummaryrefslogtreecommitdiff
path: root/mod/bookmarks/actions/delete.php
blob: d6e19cdaee046ec626c07d585a50678145871124 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
/**
 * Elgg bookmarks delete action
 *
 * @package ElggBookmarks
 */

$guid = get_input('bookmark_guid',0);
if ($entity = get_entity($guid)) {
	if ($entity->canEdit()) {
		$container = get_entity($entity->container_guid);
		if ($entity->delete()) {
			system_message(elgg_echo("bookmarks:delete:success"));
			forward("pg/bookmarks/$container->username/");
		}
	}
}

register_error(elgg_echo("bookmarks:delete:failed"));
forward($_SERVER['HTTP_REFERER']);