mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
Added some lables and formatting to fix MDL-8176 Accessibility
This commit is contained in:
parent
efe95fc405
commit
2ee1f30bb2
1 changed files with 7 additions and 4 deletions
|
@ -26,19 +26,22 @@ class block_search_forums extends block_base {
|
||||||
|
|
||||||
$advancedsearch = get_string('advancedsearch', 'block_search_forums');
|
$advancedsearch = get_string('advancedsearch', 'block_search_forums');
|
||||||
|
|
||||||
|
$search = get_string('search');
|
||||||
|
|
||||||
//Accessibility: replaced <input value=" />" type="submit"> with configurable text/'silent' character.
|
//Accessibility: replaced <input value=" />" type="submit"> with configurable text/'silent' character.
|
||||||
check_theme_arrows();
|
check_theme_arrows();
|
||||||
// Theme config, $CFG->block_search_button = $THEME->rarrow .'<span class="accesshide">'.get_string('search').'</span>';
|
// Theme config, $CFG->block_search_button = $THEME->rarrow .'<span class="accesshide">'.get_string('search').'</span>';
|
||||||
$button = (isset($CFG->block_search_button)) ? $CFG->block_search_button : get_string('go');
|
$button = (isset($CFG->block_search_button)) ? $CFG->block_search_button : get_string('go');
|
||||||
|
|
||||||
$this->content->text = '<div class="searchform">';
|
$this->content->text = '<div class="searchform">';
|
||||||
$this->content->text .= '<form action="'.$CFG->wwwroot.'/mod/forum/search.php" style="display:inline"><div>';
|
$this->content->text .= '<form action="'.$CFG->wwwroot.'/mod/forum/search.php" style="display:inline"><fieldset class="invisiblefieldset">';
|
||||||
$this->content->text .= '<input name="id" type="hidden" value="'.$this->instance->pageid.'" />'; // course
|
$this->content->text .= '<input name="id" type="hidden" value="'.$this->instance->pageid.'" />'; // course
|
||||||
$this->content->text .= '<input name="search" type="text" size="16" />';
|
$this->content->text .= '<label class="accesshide" for="searchform_search">'.$search.'</label>'.
|
||||||
$this->content->text .= '<button type="submit" title="'.get_string('search').'">'.$button.'</button><br />';
|
'<input id="searchform_search" name="search" type="text" size="16" />';
|
||||||
|
$this->content->text .= '<button id="searchform_button" type="submit" title="'.$search.'">'.$button.'</button><br />';
|
||||||
$this->content->text .= '<a href="'.$CFG->wwwroot.'/mod/forum/search.php?id='.$this->instance->pageid.'">'.$advancedsearch.'</a>';
|
$this->content->text .= '<a href="'.$CFG->wwwroot.'/mod/forum/search.php?id='.$this->instance->pageid.'">'.$advancedsearch.'</a>';
|
||||||
$this->content->text .= helpbutton('search', $advancedsearch, 'moodle', true, false, '', true);
|
$this->content->text .= helpbutton('search', $advancedsearch, 'moodle', true, false, '', true);
|
||||||
$this->content->text .= '</div></form></div>';
|
$this->content->text .= '</fieldset></form></div>';
|
||||||
|
|
||||||
return $this->content;
|
return $this->content;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue