aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/actions/forums/addpost.php
diff options
context:
space:
mode:
authordave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-07 15:02:05 +0000
committerdave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-07 15:02:05 +0000
commit69a750eb7b2a3c7a09369a3714bfaa9ef028f086 (patch)
tree97f02895ed0fc737e82b4806cc793e2fb31dcf15 /mod/groups/actions/forums/addpost.php
parentd7a0d5be049d9f5870bc09022929c628cfabaa23 (diff)
downloadelgg-69a750eb7b2a3c7a09369a3714bfaa9ef028f086.tar.gz
elgg-69a750eb7b2a3c7a09369a3714bfaa9ef028f086.tar.bz2
groups now have forums
git-svn-id: https://code.elgg.org/elgg/trunk@1761 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/actions/forums/addpost.php')
-rw-r--r--mod/groups/actions/forums/addpost.php57
1 files changed, 57 insertions, 0 deletions
diff --git a/mod/groups/actions/forums/addpost.php b/mod/groups/actions/forums/addpost.php
new file mode 100644
index 000000000..0c2f1b210
--- /dev/null
+++ b/mod/groups/actions/forums/addpost.php
@@ -0,0 +1,57 @@
+<?php
+
+ /**
+ * Elgg groups: add topic post action
+ *
+ * @package ElggGroups
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider <info@elgg.com>
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ */
+
+ // Make sure we're logged in; forward to the front page if not
+ if (!isloggedin()) forward();
+
+ // Check the user is a group member
+ $group_entity = get_entity(get_input('group_guid'));
+ if (!$group_entity->isMember($vars['user'])) forward();
+
+ // Get input
+ $topic_guid = (int) get_input('topic_guid');
+ $group_guid = (int) get_input('group_guid');
+ $post = get_input('topic_post');
+ $access = get_input('access');
+
+ // Let's see if we can get an entity with the specified GUID, and that it's a group forum topic
+ if ($topic = get_entity($topic_guid)) {
+ if ($topic->getSubtype() == "groupforumtopic") {
+
+ //check the user posted a message
+ if($post){
+ // If posting the comment was successful, say so
+ if ($topic->annotate('group_topic_post',$post,$access, $_SESSION['guid'])) {
+
+ system_message(elgg_echo("groupspost:success"));
+
+ } else {
+ system_message(elgg_echo("groupspost:failure"));
+ }
+ }else{
+ system_message(elgg_echo("groupspost:nopost"));
+ }
+
+ }
+
+ } else {
+
+ system_message(elgg_echo("groupstopic:notfound"));
+
+ }
+
+ // Forward to the group forum page
+ global $CONFIG;
+ $url = $CONFIG->wwwroot . "mod/groups/topicposts.php?topic={$topic_guid}&group_guid={$group_guid}";
+ forward($url);
+
+?> \ No newline at end of file