mediawiki-skins-Vector/includes/templates/SearchBox.mustache
Stephen Niedzielski 9d427dcb30 [Hygiene] [Mustache] rename SearchComponent to SearchBox
For consistency with VectorTabs, rename SearchComponent to only imply
component. At least two word names seems like a good target (instead of
just "Search") for grepability and standard component style conventions.

Bug: T239248
Change-Id: I1e4f7270ba29c2f35f08e92f8a28cd8a2ec8fe87
2019-12-06 17:00:42 -07:00

32 lines
1.2 KiB
Plaintext

{{!
string|null searchHeaderAttrsHTML
string|null searchInputLabel
string searchActionURL
string searchDivID
string|null searchInputHTML
string|null titleHTML
string|null fallbackSearchButtonHTML
string|null searchButtonHTML
}}
<div id="p-search" role="search">
<h3 {{{searchHeaderAttrsHTML}}}>
<label for="searchInput">{{searchInputLabel}}</label>
</h3>
<form action="{{searchActionURL}}" id="searchform">
<div id="{{searchDivID}}">
{{{searchInputHTML}}}
{{{titleHTML}}}
{{! We construct two buttons (for 'go' and 'fulltext' search modes), but only one will be
visible and actionable at a time (they are overlaid on top of each other in CSS).
* Browsers will use the 'fulltext' one by default (as it's the first in tree-order),
which is desirable when they are unable to show search suggestions (either due to being
broken or having JavaScript turned off).
* The mediawiki.searchSuggest module, after doing tests for the broken browsers, removes
the 'fulltext' button and handles 'fulltext' search itself; this will reveal the 'go'
button and cause it to be used. !}}
{{{fallbackSearchButtonHTML}}}
{{{searchButtonHTML}}}
</div>
</form>
</div>