blob: 181ac55aa59ea5db9a269357523c4edf7f9bca4e (
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
41
|
<?php
/**
* Elgg thewire: add shout action
*
* @package Elggthewire
*/
// Make sure we're logged in (send us to the front page if not)
if (!isloggedin()) forward();
// Get input data
$body = get_input('new_post_textarea');
$access_id = (int)get_default_access();
if ($access_id == ACCESS_PRIVATE) {
$access_id = ACCESS_LOGGED_IN; // Private wire messages are pointless
}
$method = get_input('method');
$parent = (int)get_input('parent', 0);
if (!$parent) {
$parent = 0;
}
// Make sure the body isn't blank
if (empty($body)) {
register_error(elgg_echo("thewire:blank"));
forward("mod/thewire/add.php");
}
if (!thewire_save_post($body, $access_id, $parent, $method)) {
register_error(elgg_echo("thewire:error"));
forward("mod/thewire/add.php");
}
// Success message
system_message(elgg_echo("thewire:posted"));
// Forward
forward("mod/thewire/everyone.php");
?>
|