aboutsummaryrefslogtreecommitdiff
path: root/mod/blog/actions
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-04-03 17:10:42 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-04-03 17:10:42 +0000
commitb71a8f06f1670d0e2d3eeb4457e1ac06c25975a0 (patch)
tree52650d2d2bbb1975d17a68893dbe87312e04b5fe /mod/blog/actions
parented7854c6e006935d8be9b0e860111767f40b3b48 (diff)
downloadelgg-b71a8f06f1670d0e2d3eeb4457e1ac06c25975a0.tar.gz
elgg-b71a8f06f1670d0e2d3eeb4457e1ac06c25975a0.tar.bz2
Added comments to blog
git-svn-id: https://code.elgg.org/elgg/trunk@396 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/blog/actions')
-rw-r--r--mod/blog/actions/comments/add.php44
1 files changed, 44 insertions, 0 deletions
diff --git a/mod/blog/actions/comments/add.php b/mod/blog/actions/comments/add.php
new file mode 100644
index 000000000..8a54cde13
--- /dev/null
+++ b/mod/blog/actions/comments/add.php
@@ -0,0 +1,44 @@
+<?php
+
+ /**
+ * Elgg blog: add 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/
+ */
+
+ // Make sure we're logged in; forward to the front page if not
+ if (!isloggedin()) forward();
+
+ // Get input
+ $blogpost_guid = (int) get_input('blogpost_guid');
+ $comment = get_input('comment');
+
+ // Let's see if we can get an entity with the specified GUID, and that it's a blog post
+ if ($blogpost = get_entity($blogpost_guid)) {
+ if ($blogpost->getSubtype() == "blog") {
+
+ // If posting the comment was successful, say so
+ if ($blogpost->annotate('comment',$comment,$blogpost->access_id, $_SESSION['guid'])) {
+
+ system_message(elgg_echo("comment:success"));
+
+ } else {
+ system_message(elgg_echo("comment:failure"));
+ }
+
+ }
+
+ } else {
+
+ system_message(elgg_echo("blog:notfound"));
+
+ }
+
+ // Forward to the
+ forward("mod/blog/read.php?blogpost=" . $blogpost_guid);
+
+?> \ No newline at end of file