mirror of
https://github.com/moodle/moodle.git
synced 2025-03-14 12:40:01 +01:00
MDL-34562 accessibility compliance for chat module: Add <label> for input text and select tag
This commit is contained in:
parent
470d47f512
commit
da248cbb71
@ -77,7 +77,7 @@ echo $OUTPUT->box('', '', 'chat-options');
|
||||
echo $OUTPUT->box('<ul id="messages-list"></ul>', '', 'chat-messages');
|
||||
$table = new html_table();
|
||||
$table->data = array(
|
||||
array(' » <input type="text" disabled="true" id="input-message" value="Loading..." size="50" /> <input type="button" id="button-send" value="'.get_string('send', 'chat').'" /> <a id="choosetheme" href="###">'.get_string('themes').' » </a>')
|
||||
array(' » <label class="accesshide" for="input-message">' . get_string('entermessage', 'chat') . ' </label><input type="text" disabled="true" id="input-message" value="Loading..." size="50" /> <input type="button" id="button-send" value="'.get_string('send', 'chat').'" /> <a id="choosetheme" href="###">'.get_string('themes').' » </a>')
|
||||
);
|
||||
echo $OUTPUT->box(html_writer::table($table), '', 'chat-input-area');
|
||||
echo $OUTPUT->box('', '', 'chat-notify');
|
||||
|
@ -44,6 +44,7 @@ $PAGE->set_cacheable(false);
|
||||
echo $OUTPUT->header();
|
||||
|
||||
echo html_writer::start_tag('form', array('action'=>'../empty.php', 'method'=>'post', 'target'=>'empty', 'id'=>'inputForm', 'style'=>'margin:0'));
|
||||
echo html_writer::label(get_string('entermessage', 'chat'), 'input_chat_message', false, array('class' => 'accesshide'));
|
||||
echo html_writer::empty_tag('input', array('type'=>'text', 'id'=>'input_chat_message', 'name'=>'chat_message', 'size'=>'50', 'value'=>''));
|
||||
echo html_writer::empty_tag('input', array('type'=>'checkbox', 'id'=>'auto', 'checked'=>'checked', 'value'=>''));
|
||||
echo html_writer::tag('label', get_string('autoscroll', 'chat'), array('for'=>'auto'));
|
||||
|
@ -28,6 +28,7 @@ echo $OUTPUT->header();
|
||||
|
||||
<form action="../empty.php" method="get" target="empty" id="inputform"
|
||||
onsubmit="return empty_field_and_submit();">
|
||||
<label class="accesshide" for="chat_message"><?php print_string('entermessage', 'chat'); ?></label>
|
||||
<input type="text" name="chat_message" id="chat_message" size="60" value="" />
|
||||
<?php echo $OUTPUT->help_icon('usingchat', 'chat'); ?>
|
||||
</form>
|
||||
|
@ -59,6 +59,7 @@ $string['chat:readlog'] = 'Read chat logs';
|
||||
$string['chatreport'] = 'Chat sessions';
|
||||
$string['chat:talk'] = 'Talk in a chat';
|
||||
$string['chattime'] = 'Next chat time';
|
||||
$string['entermessage'] = "Enter your message";
|
||||
$string['idle'] = 'Idle';
|
||||
$string['inputarea'] = 'Input area';
|
||||
$string['invalidid'] = 'Could not find that chat room!';
|
||||
|
Loading…
x
Reference in New Issue
Block a user