2 This file is part of Moodle - http://moodle.org/
4 Moodle is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 Moodle is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 @template core_user/unified_filter
20 Template for the unified filter element.
22 Context variables required for this template:
23 * action string - The action URL for the form.
24 * filteroptions - Array of filter options.
25 * value string - The option value.
26 * label string - The option label.
27 * selected boolean - Whether the option is selected
29 Example context (json):
31 "action": "/user/index.php",
54 <form method="post" action="{{action}}" class="m-b-1" role="search">
55 <label for="unified-filters" class="sr-only">{{#str}}filters{{/str}}</label>
56 <select name="unified-filters[]" id="unified-filters" multiple="multiple" data-originaloptionsjson="{{originaloptionsjson}}" class="form-autocomplete-original-select">
58 <option value="{{value}}" {{#selected}}selected="selected"{{/selected}}>{{{label}}}</option>
61 <input type="hidden" name="unified-filter-submitted" value="1">
64 require(['core_user/unified_filter'], function(Filter) {