moodle/lib/templates/search_input.mustache
Paul Holden f3ae5116d0
MDL-77313 restore: re-add field to indicate course/category search.
When the two restore forms for searching courses and categories were
converted to core templates in eb9935c9 they lost the named submit
button, which broke searching.
2023-04-24 11:04:26 +01:00

84 lines
2.6 KiB
Plaintext

{{!
This file is part of Moodle - http://moodle.org/
Moodle is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Moodle is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Moodle. If not, see <http://www.gnu.org/licenses/>.
}}
{{!
@template core/search_input
Simple search input.
Example context (json):
{
"action": "https://moodle.local/admin/search.php",
"extraclasses": "my-2",
"inputname": "search",
"inform": false,
"searchstring": "Search settings",
"value": "policy",
"btnclass": "primary",
"buttonattributes": [
{
"key": "name",
"value": "hello"
}
],
"query": "themedesigner",
"hiddenfields": [
{
"name": "context",
"value": "11"
}
]
}
}}
<div class="simplesearchform {{ extraclasses }}">
{{^inform}}
<form autocomplete="off" action="{{ action }}" method="get" accept-charset="utf-8" class="mform form-inline simplesearchform">
{{/inform}}
{{#hiddenfields}}
<input type="hidden" name="{{ name }}" value="{{ value }}">
{{/hiddenfields}}
<div class="input-group">
<label for="searchinput-{{uniqid}}">
<span class="sr-only">{{{ searchstring }}}</span>
</label>
<input type="text"
id="searchinput-{{uniqid}}"
class="form-control"
placeholder="{{ searchstring }}"
aria-label="{{ searchstring }}"
name="{{ inputname }}"
data-region="input"
autocomplete="off"
value="{{ query }}"
>
<div class="input-group-append">
<button type="submit"
class="btn {{^btnclass}}btn-submit{{/btnclass}} {{ btnclass }} search-icon"
{{#buttonattributes}}{{ key }}="{{ value }}" {{/buttonattributes}}
>
{{#pix}} a/search, core {{/pix}}
<span class="sr-only">{{ searchstring }}</span>
</button>
</div>
</div>
{{#otherfields}}
<div class="ml-2">{{{ otherfields }}}</div>
{{/otherfields}}
{{^inform}}
</form>
{{/inform}}
</div>