aboutsummaryrefslogtreecommitdiff
path: root/mod/blog/actions
diff options
context:
space:
mode:
Diffstat (limited to 'mod/blog/actions')
-rw-r--r--mod/blog/actions/comments/delete.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/mod/blog/actions/comments/delete.php b/mod/blog/actions/comments/delete.php
new file mode 100644
index 000000000..8eee2c961
--- /dev/null
+++ b/mod/blog/actions/comments/delete.php
@@ -0,0 +1,34 @@
+<?php
+
+ /**
+ * Elgg blog: delete comment action
+ *
+ * @package ElggBlog
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Ben Werdmuller <ben@curverider.co.uk>
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ */
+
+ // Ensure we're logged in
+ if (!isloggedin()) forward();
+
+ // Make sure we can get the comment in question
+ $comment_id = (int) get_input('comment_id');
+ if ($comment = get_annotation($comment_id)) {
+
+ $url = "mod/blog/read.php?blogpost=" . $comment->entity_guid;
+ if ($comment->canEdit()) {
+ $comment->delete();
+ system_message(elgg_echo("comment:deleted"));
+ forward($url);
+ }
+
+ } else {
+ $url = "";
+ }
+
+ system_message(elgg_echo("comment:notdeleted"));
+ forward($url);
+
+?> \ No newline at end of file