aboutsummaryrefslogtreecommitdiff
path: root/actions/entities/delete.php
blob: 823e85c59da613396bf9cd38b4d0c3ae9ec90fbf (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
<?php
/**
 * Default entity delete action
 *
 * @package Elgg
 * @subpackage Core
 */

gatekeeper();

$guid = get_input('guid');
$entity = get_entity($guid);

if (($entity) && ($entity->canEdit())) {
	if ($entity->delete()) {
		system_message(elgg_echo('entity:delete:success', array($guid)));
	} else {
		register_error(elgg_echo('entity:delete:fail', array($guid)));
	}
} else {
	register_error(elgg_echo('entity:delete:fail', array($guid)));
}

forward(REFERER);