aboutsummaryrefslogtreecommitdiff
path: root/mod/pages/actions/annotations/page/delete.php
blob: 156b516d21c437e733ccdcdcc5e5f952fdf14b26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
/**
 * Remove a page (revision) annotation
 *
 * @package ElggPages
 */

// Make sure we can get the annotations and entity in question
$annotation_id = (int) get_input('annotation_id');
$annotation = elgg_get_annotation_from_id($annotation_id);
$entity = get_entity($annotation->entity_guid);

if ($annotation && $entity->canEdit() && $annotation->canEdit()) {
	$annotation->delete();
	system_message(elgg_echo("pages:revision:delete:success"));
} else {
	register_error(elgg_echo("pages:revision:delete:failure"));
}

forward("pages/history/{$annotation->entity_guid}");