Your IP : 3.138.123.149


Current Path : /home/ncdcgo/ele.ncdc.go.ug/lib/templates/
Upload File :
Current File : /home/ncdcgo/ele.ncdc.go.ug/lib/templates/search_input.mustache

{{!
    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",
        "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">
                {{#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>