2020-08-31 09:06:08 +00:00
|
|
|
{{!
|
|
|
|
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",
|
2020-09-09 12:04:31 +02:00
|
|
|
"inform": false,
|
2020-08-31 09:06:08 +00:00
|
|
|
"searchstring": "Search settings",
|
|
|
|
"value": "policy",
|
|
|
|
"btnclass": "primary",
|
|
|
|
"query": "themedesigner",
|
|
|
|
"hiddenfields": [
|
|
|
|
{
|
|
|
|
"name": "context",
|
|
|
|
"value": "11"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}}
|
2021-01-08 20:29:30 +08:00
|
|
|
<div class="simplesearchform {{ extraclasses }}">
|
2020-09-09 12:04:31 +02:00
|
|
|
{{^inform}}
|
2021-01-08 20:29:30 +08:00
|
|
|
<form autocomplete="off" action="{{ action }}" method="get" accept-charset="utf-8" class="mform form-inline simplesearchform">
|
2020-09-09 12:04:31 +02:00
|
|
|
{{/inform}}
|
2020-08-31 09:06:08 +00:00
|
|
|
{{#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"
|
2021-01-08 20:29:30 +08:00
|
|
|
placeholder="{{ searchstring }}"
|
|
|
|
aria-label="{{ searchstring }}"
|
|
|
|
name="{{ inputname }}"
|
2020-08-31 09:06:08 +00:00
|
|
|
data-region="input"
|
|
|
|
autocomplete="off"
|
2021-01-08 20:29:30 +08:00
|
|
|
value="{{ query }}"
|
2020-08-31 09:06:08 +00:00
|
|
|
>
|
|
|
|
<div class="input-group-append">
|
2021-01-08 20:29:30 +08:00
|
|
|
<button type="submit" class="btn {{^btnclass}}btn-submit{{/btnclass}} {{ btnclass }} search-icon">
|
2020-08-31 09:06:08 +00:00
|
|
|
{{#pix}} a/search, core {{/pix}}
|
2021-01-08 20:29:30 +08:00
|
|
|
<span class="sr-only">{{ searchstring }}</span>
|
2020-08-31 09:06:08 +00:00
|
|
|
</button>
|
|
|
|
</div>
|
2020-09-09 12:04:31 +02:00
|
|
|
|
2020-08-31 09:06:08 +00:00
|
|
|
</div>
|
2020-08-31 14:20:10 +02:00
|
|
|
{{#otherfields}}
|
|
|
|
<div class="ml-2">{{{ otherfields }}}</div>
|
|
|
|
{{/otherfields}}
|
2020-09-09 12:04:31 +02:00
|
|
|
{{^inform}}
|
|
|
|
</form>
|
|
|
|
{{/inform}}
|
2020-08-31 09:06:08 +00:00
|
|
|
</div>
|