aboutsummaryrefslogtreecommitdiff
path: root/mod/blog/actions
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-04-15 15:35:35 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-04-15 15:35:35 +0000
commita9e67905b90320bf8566b6919b5edb3354d7fd6d (patch)
tree48a5eb62764cfaad7724df4291911bab2c495eeb /mod/blog/actions
parent4c6fce1ea489455e83b4552112ff6e5b332f650f (diff)
downloadelgg-a9e67905b90320bf8566b6919b5edb3354d7fd6d.tar.gz
elgg-a9e67905b90320bf8566b6919b5edb3354d7fd6d.tar.bz2
Blog plugin improvements, including delete on comments
git-svn-id: https://code.elgg.org/elgg/trunk@466 36083f99-b078-4883-b0ff-0f9b5a30f544
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