Skip to content

Commit

Permalink
Merge branch 'MDL-28568_noncontact_warning_23' of git://github.com/an…
Browse files Browse the repository at this point in the history
…dyjdavis/moodle into MOODLE_23_STABLE
  • Loading branch information
Sam Hemelryk committed Jul 31, 2012
2 parents 4689599 + 36e22a8 commit eec3d18
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
3 changes: 2 additions & 1 deletion lang/en/message.php
Expand Up @@ -82,6 +82,7 @@
$string['messagehistoryfull'] = 'All messages';
$string['messages'] = 'Messages';
$string['messaging'] = 'Messaging';
$string['messagingblockednoncontact'] = '{$a} will not be able to reply as you have blocked non-contacts';
$string['messagingdisabled'] = 'Messaging is disabled on this site, emails will be sent instead';
$string['mycontacts'] = 'My contacts';
$string['newonlymsg'] = 'Show only new';
Expand Down Expand Up @@ -140,5 +141,5 @@
$string['unreadnewnotification'] = 'New notification';
$string['unreadnewnotifications'] = 'New notifications ({$a})';
$string['userisblockingyou'] = 'This user has blocked you from sending messages to them';
$string['userisblockingyounoncontact'] = 'This user is only accepting messages from people listed as contacts, and you are not currently on the list.';
$string['userisblockingyounoncontact'] = '{$a} only accepts messages from their contacts.';
$string['userssearchresults'] = 'Users found: {$a}';
15 changes: 13 additions & 2 deletions message/index.php
Expand Up @@ -153,7 +153,7 @@

if (!empty($userpreferences['message_blocknoncontacts'])) { // User is blocking non-contacts
if (empty($contact)) { // We are not a contact!
$messageerror = get_string('userisblockingyounoncontact', 'message');
$messageerror = get_string('userisblockingyounoncontact', 'message', fullname($user2));
}
}

Expand Down Expand Up @@ -287,8 +287,19 @@
if ($currentuser && has_capability('moodle/site:sendmessage', $context)) {
echo html_writer::start_tag('div', array('class' => 'mdl-align messagesend'));
if (!empty($messageerror)) {
echo $OUTPUT->heading($messageerror, 3);
echo html_writer::tag('span', $messageerror, array('id' => 'messagewarning'));
} else {
// Display a warning if the current user is blocking non-contacts and is about to message to a non-contact
// Otherwise they may wonder why they never get a reply
$blocknoncontacts = get_user_preferences('message_blocknoncontacts', '', $user1->id);
if (!empty($blocknoncontacts)) {
$contact = $DB->get_record('message_contacts', array('userid' => $user1->id, 'contactid' => $user2->id));
if (empty($contact)) {
$msg = get_string('messagingblockednoncontact', 'message', fullname($user2));
echo html_writer::tag('span', $msg, array('id' => 'messagewarning'));
}
}

$mform = new send_form();
$defaultmessage = new stdClass;
$defaultmessage->id = $user2->id;
Expand Down
1 change: 1 addition & 0 deletions theme/standard/style/core.css
Expand Up @@ -453,3 +453,4 @@ table#tag-management-list {margin: 10px auto;width: 80%;}
#page-message-edit table.generaltable th.c0 {text-align: left;}
#page-message-edit table.generaltable td.c0 {text-align: right;}
#page-message-edit table.generaltable td.disallowed {text-align: center;vertical-align:middle;}
#messagewarning {font-style:italic;}

0 comments on commit eec3d18

Please sign in to comment.