MDL-31835 message: added a view conversation type link after each conversation on the recent conversation screen

This commit is contained in:
Andrew Davis
2012-03-16 13:28:08 +07:00
parent 832626da76
commit c232e12bf2
2 changed files with 7 additions and 0 deletions
+1
View File
@@ -128,6 +128,7 @@ $string['settings'] = 'Settings';
$string['settingssaved'] = 'Your settings have been saved';
$string['showmessagewindow'] = 'Popup window on new message';
$string['strftimedaydatetime'] = '%A, %d %B %Y, %I:%M %p';
$string['thisconversation'] = 'this conversation';
$string['timenosee'] = 'Minutes since I was last seen online';
$string['timesent'] = 'Time sent';
$string['touserdoesntexist'] = 'You can not send a message to a user id ({$a}) that doesn\'t exist';
+6
View File
@@ -816,6 +816,12 @@ function message_print_recent_conversations($user=null, $showicontext=false) {
$conversations = message_get_recent_conversations($user);
// Attach context url information to create the "View this conversation" type links
foreach($conversations as $conversation) {
$conversation->contexturl = new moodle_url("/message/index.php?user2={$conversation->id}");
$conversation->contexturlname = get_string('thisconversation', 'message');
}
$showotheruser = true;
message_print_recent_messages_table($conversations, $user, $showotheruser, $showicontext);
}