From 4766f36a4d74924f21ff329c4318ce4e069ffa04 Mon Sep 17 00:00:00 2001 From: brettp Date: Wed, 3 Mar 2010 17:53:05 +0000 Subject: Pulled in the interface changes. git-svn-id: http://code.elgg.org/elgg/trunk@5257 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/messageboard/actions/add.php | 68 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 mod/messageboard/actions/add.php (limited to 'mod/messageboard/actions/add.php') diff --git a/mod/messageboard/actions/add.php b/mod/messageboard/actions/add.php new file mode 100644 index 000000000..98ffe4b47 --- /dev/null +++ b/mod/messageboard/actions/add.php @@ -0,0 +1,68 @@ + + * @copyright Curverider Ltd 2008-2010 + * @link http://elgg.org/ + */ + + // 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); + + + } 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); + +?> \ No newline at end of file -- cgit v1.2.3