aboutsummaryrefslogtreecommitdiff
path: root/actions/entities/delete.php
blob: 3ec88bd04e816630bfc7a7e7eb4a6ce55c14c336 (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(sprintf(elgg_echo('entity:delete:success'), $guid));
	} else {
		register_error(sprintf(elgg_echo('entity:delete:fail'), $guid));
	}
} else {
	register_error(sprintf(elgg_echo('entity:delete:fail'), $guid));
}

forward(REFERER);