aboutsummaryrefslogtreecommitdiff
path: root/mod/bookmarks/actions/bookmarks/delete.php
blob: 48b4a2dd84ba341eb8d7bb832fa12ed47d4c7314 (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 bookmarks delete action
	 * 
	 * @package ElggBookmarks
	 */

		$guid = get_input('bookmark_guid',0);
		if ($entity = get_entity($guid)) {

			$container = get_entity($entity->container_guid);
			if ($entity->canEdit()) {
				
				if ($entity->delete()) {
					
					system_message(elgg_echo("bookmarks:delete:success"));
					forward("pg/bookmarks/owner/$container->username/");
					
				}
				
			}
			
		}
		
		register_error(elgg_echo("bookmarks:delete:failed"));
		forward(REFERER);

?>