mirror of
https://github.com/moodle/moodle.git
synced 2025-02-19 15:45:59 +01:00
74 lines
3.9 KiB
Plaintext
74 lines
3.9 KiB
Plaintext
{{!
|
|
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_question/column_header
|
|
|
|
Displays the <th> header cell for a column in the question bank.
|
|
|
|
Context variables required for this template:
|
|
* extraclasses: CSS classes to add to the th. E.g. "questionstatus pr-3".
|
|
* help: (optional, may be omitted) help icon. The structure here needs to be as from help_icon::export_for_template().
|
|
|
|
Other fields vary, depending on whether the column is sortable.
|
|
|
|
Column with plain title, not sortable:
|
|
* sortable: false
|
|
* tiptitle: Column name (e.g. "Status")
|
|
* sorttip: (optional) must be true if tip is present.
|
|
* tip: (optional) a tool tip to show, if the title needs explanation. E.g. "Select questions for bulk actions".
|
|
|
|
Sortable column, with a single type of sort (e.g. question type)
|
|
* sortable: true
|
|
* 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>"
|
|
|
|
Sortable column, with an overall title, and multiple sort types (e.g. question name/idnumber)
|
|
* sortable: true
|
|
* title: "Question"
|
|
* 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>"
|
|
|
|
Example context (json):
|
|
{
|
|
"sortable": false,
|
|
"extraclasses": "checkbox pr-3",
|
|
"tiptitle": "<input id=\"qbheadercheckbox\" name=\"qbheadercheckbox\" type=\"checkbox\" value=\"1\"\n data-action=\"toggle\"\n data-toggle=\"master\"\n data-togglegroup=\"qbank\"\n data-toggle-selectall=\"Select all\"\n data-toggle-deselectall=\"Deselect all\"\n \n\/>\n <label for=\"qbheadercheckbox\" class=\"accesshide\">Select all<\/label>",
|
|
"sorttip": true,
|
|
"tip": "Select questions for bulk actions"
|
|
}
|
|
}}
|
|
<th class="header {{extraclasses}}" scope="col">
|
|
{{#title}}
|
|
<div class="title">{{title}}</div>
|
|
{{/title}}
|
|
{{^sortable}}
|
|
{{^sorttip}}
|
|
{{tiptitle}}
|
|
{{/sorttip}}
|
|
{{#sorttip}}
|
|
<span title="{{tip}}">{{{tiptitle}}}</span>
|
|
{{/sorttip}}
|
|
{{/sortable}}
|
|
{{#sortable}}
|
|
<div class="sorters">
|
|
{{{sortlinks}}}
|
|
</div>
|
|
{{/sortable}}
|
|
{{#help}}
|
|
{{>core/help_icon}}
|
|
{{/help}}
|
|
</th>
|
|
|