aboutsummaryrefslogtreecommitdiff
path: root/mod/messageboard/actions/add.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/messageboard/actions/add.php')
-rw-r--r--mod/messageboard/actions/add.php96
1 files changed, 33 insertions, 63 deletions
diff --git a/mod/messageboard/actions/add.php b/mod/messageboard/actions/add.php
index 98ffe4b47..971dd22fc 100644
--- a/mod/messageboard/actions/add.php
+++ b/mod/messageboard/actions/add.php
@@ -1,68 +1,38 @@
<?php
+/**
+ * Elgg Message board: add message action
+ *
+ * @package ElggMessageBoard
+ */
- /**
- * Elgg Message board: add message action
- *
- * @package ElggMessageBoard
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
- */
+$message_content = get_input('message_content');
+$owner_guid = get_input("owner_guid");
+$owner = get_entity($owner_guid);
- // Make sure we're logged in; forward to the front page if not
- if (!isloggedin()) forward();
-
- // Get input
- $message_content = get_input('message_content'); // the actual message
- $page_owner = get_input("pageOwner"); // the message board owner
- $message_owner = get_input("guid"); // the user posting the message
- $user = get_entity($page_owner); // the message board owner's details
-
- // Let's see if we can get a user entity from the specified page_owner
- if ($user && !empty($message_content)) {
-
- // If posting the comment was successful, say so
- if ($user->annotate('messageboard',$message_content,$user->access_id, $_SESSION['user']->getGUID())) {
-
- global $CONFIG;
-
- if ($user->getGUID() != $_SESSION['user']->getGUID())
- notify_user($user->getGUID(), $_SESSION['user']->getGUID(), elgg_echo('messageboard:email:subject'),
- sprintf(
- elgg_echo('messageboard:email:body'),
- $_SESSION['user']->name,
- $message_content,
- $CONFIG->wwwroot . "pg/messageboard/" . $user->username,
- $_SESSION['user']->name,
- $_SESSION['user']->getURL()
- )
- );
-
- system_message(elgg_echo("messageboard:posted"));
- // add to river
- add_to_river('river/object/messageboard/create','messageboard',$_SESSION['user']->guid,$user->guid);
+if ($owner && !empty($message_content)) {
+ $result = messageboard_add(elgg_get_logged_in_user_entity(), $owner, $message_content, $owner->access_id);
-
- } else {
-
- register_error(elgg_echo("messageboard:failure"));
-
- }
-
- //set the url to return the user to the correct message board
- $url = "pg/messageboard/" . $user->username;
-
- } else {
-
- register_error(elgg_echo("messageboard:blank"));
-
- //set the url to return the user to the correct message board
- $url = "pg/messageboard/" . $user->username;
-
- }
-
- // Forward back to the messageboard
- forward($url);
+ if ($result) {
+ system_message(elgg_echo("messageboard:posted"));
-?> \ No newline at end of file
+ $options = array(
+ 'annotations_name' => 'messageboard',
+ 'guid' => $owner->getGUID(),
+ 'limit' => $num_display,
+ 'pagination' => false,
+ 'reverse_order_by' => true,
+ 'limit' => 1
+ );
+
+ $output = elgg_list_annotations($options);
+ echo $output;
+
+ } else {
+ register_error(elgg_echo("messageboard:failure"));
+ }
+
+} else {
+ register_error(elgg_echo("messageboard:blank"));
+}
+
+forward(REFERER);