blob: 7b24027324624a9cfda921203bda0c7dad9403b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<?php
/**
* 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/
*/
// Get input
$message_content = get_input('message_content'); // the actual message
$page_owner = get_input("pageOwner"); // the message board owner
$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 (messageboard_add(get_loggedin_user(), $user, $message_content, $user->access_id)) {
system_message(elgg_echo("messageboard:posted"));
} 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);
|