blob: b032e37d7332e32bdc11d8718ebc6353082bdfc3 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
<?php
/**
* Elgg groups plugin edit topic action.
*/
// Make sure we're logged in (send us 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(get_loggedin_user())) forward();
// Get input data
$title = strip_tags(get_input('topictitle'));
$message = get_input('topicmessage');
$message_id = get_input('message_id');
$tags = get_input('topictags');
$topic_guid = get_input('topic');
$access = get_input('access_id');
$group_guid = get_input('group_guid');
$status = get_input('status'); // open, closed
// Convert string of tags into a preformatted array
$tagarray = string_to_tag_array($tags);
// Make sure we actually have permission to edit
$topic = get_entity($topic_guid);
if ($topic){
$user = $topic->getOwnerGUID();
if ($topic->getSubtype() == "groupforumtopic") {
// Convert string of tags into a preformatted array
$tagarray = string_to_tag_array($tags);
// Make sure the title isn't blank
if (empty($title) || empty($message)) {
register_error(elgg_echo("groupstopic:blank"));
// Otherwise, save the forum
} else {
$topic->access_id = $access;
// Set its title
$topic->title = $title;
// Set the message
$topic->description = $message;
// if no tags are present, clear existing ones
if (is_array($tagarray)) {
$topic->tags = $tagarray;
} else $topic->clearMetadata('tags');
// edit metadata
$topic->status = $status; // the current status i.e sticky, closed, resolved
// save the changes
if (!$topic->save()) {
// register_error(elgg_echo("forumtopic:error"));
}
// Success message
system_message(elgg_echo("groups:forumtopic:edited"));
}
}
}
// Forward to the discussion
global $CONFIG;
$url = elgg_get_site_url() . "mod/groups/topicposts.php?topic={$topic_guid}&group_guid={$group_guid}/";
forward($url);
|