diff options
Diffstat (limited to 'actions/comments/delete.php')
-rw-r--r-- | actions/comments/delete.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/actions/comments/delete.php b/actions/comments/delete.php new file mode 100644 index 000000000..f2c058ff4 --- /dev/null +++ b/actions/comments/delete.php @@ -0,0 +1,23 @@ +<?php +/** + * Elgg delete comment action + * + * @package Elgg + */ + +// Ensure we're logged in +if (!elgg_is_logged_in()) { + forward(); +} + +// Make sure we can get the comment in question +$annotation_id = (int) get_input('annotation_id'); +$comment = elgg_get_annotation_from_id($annotation_id); +if ($comment && $comment->canEdit()) { + $comment->delete(); + system_message(elgg_echo("generic_comment:deleted")); +} else { + register_error(elgg_echo("generic_comment:notdeleted")); +} + +forward(REFERER);
\ No newline at end of file |