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_question/column_header
20 Displays the <th> header cell for a column in the question bank.
22 Context variables required for this template:
23 * extraclasses: CSS classes to add to the th. E.g. "questionstatus pr-3".
24 * help: (optional, may be omitted) help icon. The structure here needs to be as from help_icon::export_for_template().
26 Other fields vary, depending on whether the column is sortable.
28 Column with plain title, not sortable:
30 * tiptitle: Column name (e.g. "Status")
31 * sorttip: (optional) must be true if tip is present.
32 * tip: (optional) a tool tip to show, if the title needs explanation. E.g. "Select questions for bulk actions".
34 Sortable column, with a single type of sort (e.g. question type)
36 * sortlinks: HTML of the title, in a link to sort by this. E.g. "<a href=\"http:\/\/localhost\/moodle_head\/question\/edit.php?courseid=100000&qbs1=-qbank_viewquestiontype%5Cquestion_type_column&qbs2=qbank_viewquestionname%5Cquestion_name_idnumber_tags_column-name\" title=\"Sort by Question type descending\">\n T<i class=\"icon fa fa-sort-asc fa-fw iconsort\" title=\"Ascending\" role=\"img\" aria-label=\"Ascending\"><\/i>\n<\/a>"
38 Sortable column, with an overall title, and multiple sort types (e.g. question name/idnumber)
41 * sortlinks: Several sort links concatenated. E.g. "<a href=\"http:\/\/localhost\/moodle_head\/question\/edit.php?courseid=100000&qbs1=qbank_viewquestionname%5Cquestion_name_idnumber_tags_column-name&qbs2=qbank_viewquestiontype%5Cquestion_type_column\" title=\"Sort by Question name ascending\">\n Question name\n<\/a> \/ <a href=\"http:\/\/localhost\/moodle_head\/question\/edit.php?courseid=100000&qbs1=qbank_viewquestionname%5Cquestion_name_idnumber_tags_column-idnumber&qbs2=qbank_viewquestiontype%5Cquestion_type_column&qbs3=qbank_viewquestionname%5Cquestion_name_idnumber_tags_column-name\" title=\"Sort by ID number ascending\">\n ID number\n<\/a>"
43 Example context (json):
46 "extraclasses": "checkbox pr-1",
47 "tiptitle": "<input id=\"qbheadercheckbox\" name=\"qbheadercheckbox\" type=\"checkbox\" value=\"1\" data-action=\"toggle\" data-toggle=\"master\" data-togglegroup=\"qbank\" data-toggle-selectall=\"Select all\" data-toggle-deselectall=\"Deselect all\"><label for=\"qbheadercheckbox\" class=\"accesshide\">Select all<\/label>",
49 "tip": "Select questions for bulk actions",
50 "class": "plugin_class",
54 <th class="header align-top {{extraclasses}}"
56 data-pluginname="{{class}}"
58 data-columnid="{{columnid}}"
59 {{#width}}style="width: {{width}};"{{/width}}>
60 <div class="header-container">
61 <div class="header-text">
63 <div class="title mr-1">{{title}}</div>
67 <span class="mr-1">{{tiptitle}}</span>
70 <span class="mr-1" title="{{tip}}">{{{tiptitle}}}</span>
76 {{#actionmenu}}{{>core/action_menu}}{{/actionmenu}}