芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/www/cepali/lib/templates/availability_info.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
. }} {{! @template core/availability_info Renders the availability info on the course outline page. Availability info can be displayed for activity modules or whole course sections. Activity modules can be either hidden from students, or available but not shown on course page (stealth), or the access can be restricted by configured conditions. Sections can be hidden. Classes required for JS: * none Data attributes required for JS: * none Context variables required for this template: * classes String list of CSS classes for the wrapping element * text HTML formatted text with the actual availability information * ishidden Boolean flag indiciating that the item is hidden from students * isstealth Boolean flag indicating that the item is in stealth mode * isrestricted Boolean flag indicating that restricted access conditions apply * isfullinfo Boolean flag indicating that the full list of restricted access conditions is displayed (aka teacher's view). Example context (json): { "classes": "", "text": "Not available unless:
It is on or after
8 June 2012
", "ishidden": 0, "isstealth": 0, "isrestricted": 1, "isfullinfo": 1 } }} {{#text}}
{{^isrestricted}}
{{{text}}}
{{/isrestricted}} {{#isrestricted}}
{{#str}}restricted, core{{/str}}
{{{text}}} {{/isrestricted}}
{{/text}}