MDL-58340 core_calendar: bailout callback now uses '$cm->uservisible'
[moodle.git] / admin / templates / settings_search_results.mustache
blob78b62053374634e34ff5fd1c720afe83eaf677e8
1 {{!
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/>.
17 {{!
18     @template core_admin/settings_search_results
20     Admin setting search results template.
22     Context variables required for this template:
23     * actionurl - Url to post to
24     * hasresults - True if there are results
25     * results - List of results containing url, title, settings (array of raw html)
26     * showsave - Show save buttons
28     Example context (json):
29     {
30         "actionurl": "/",
31         "hasresults": true,
32         "results": [
33             { "url": "/", "title": "Match!", "settings": [ "blah blah blah" ] }
34         ]
35     }
37 <form action="{{actionurl}}" method="post" id="adminsettings">
38     <div>
39         <input type="hidden" name="sesskey" value="{{sesskey}}">
40         <input type="hidden" name="action" value="save-settings">
41     </div>
42     <fieldset>
43         <div class="clearer"></div>
44         {{#hasresults}}
45             {{#results}}
46                 <h2 class="main">{{#str}}searchresults, admin{{/str}} - <a href="{{url}}">{{{title}}}</a></h2>
47                 <fieldset class="adminsettings">
48                     {{#settings}}
49                         <div class="clearer"></div>
50                         {{{.}}}
51                     {{/settings}}
52                 </fieldset>
53             {{/results}}
54             {{#showsave}}
55                 <div class="form-buttons">
56                     <input type="submit" class="form-submit" value={{#quote}}{{#str}}savechanges, admin{{/str}}{{/quote}}>
57                 </div>
58             {{/showsave}}
59         {{/hasresults}}
60         {{^hasresults}}
61             {{#str}}noresults, admin{{/str}}
62         {{/hasresults}}
63     </fieldset>
64 </form>