mirror of
https://github.com/moodle/moodle.git
synced 2025-04-14 13:02:07 +02:00
MDL-34560 accessibility compliance for message: Add label for input text and select tag
This commit is contained in:
parent
470d47f512
commit
6cae398f1d
@ -80,6 +80,7 @@ $string['maxmessages'] = 'Maximum number of messages to show in the discussion h
|
||||
$string['message'] = 'Message';
|
||||
$string['messagehistory'] = 'Message history';
|
||||
$string['messagehistoryfull'] = 'All messages';
|
||||
$string['messagenavigation'] = 'Message navigation:';
|
||||
$string['messages'] = 'Messages';
|
||||
$string['messaging'] = 'Messaging';
|
||||
$string['messagingblockednoncontact'] = '{$a} will not be able to reply as you have blocked non-contacts';
|
||||
|
@ -507,9 +507,10 @@ function message_print_usergroup_selector($viewing, $courses, $coursecontexts, $
|
||||
}
|
||||
|
||||
echo html_writer::start_tag('form', array('id' => 'usergroupform','method' => 'get','action' => ''));
|
||||
echo html_writer::start_tag('fieldset');
|
||||
echo html_writer::select($options, 'viewing', $viewing, false, array('id' => 'viewing','onchange' => 'this.form.submit()'));
|
||||
echo html_writer::end_tag('fieldset');
|
||||
echo html_writer::start_tag('fieldset');
|
||||
echo html_writer::label(get_string('messagenavigation', 'message'), 'viewing');
|
||||
echo html_writer::select($options, 'viewing', $viewing, false, array('id' => 'viewing','onchange' => 'this.form.submit()'));
|
||||
echo html_writer::end_tag('fieldset');
|
||||
echo html_writer::end_tag('form');
|
||||
}
|
||||
|
||||
|
@ -4,6 +4,7 @@
|
||||
<tr>
|
||||
<td colspan="3" class="message_heading mdl-left">
|
||||
<input type="hidden" name="sesskey" value="<?php p(sesskey()); ?>" />
|
||||
<label for="combinedsearch" class="accesshide"><?php print_string('searchcombined', 'message'); ?></label>
|
||||
<input type="text" name="combinedsearch" size="40" id="combinedsearch" value="<?php p($combinedsearchstring); ?>" />
|
||||
<input type="submit" name="combinedsubmit" value="<?php print_string('searchcombined','message') ?>" />
|
||||
<a href="index.php?usergroup=<?php echo MESSAGE_VIEW_SEARCH ?>&advanced=1" id="advancedcontactsearchlink"><?php print_string('advanced') ?></a>
|
||||
|
Loading…
x
Reference in New Issue
Block a user