Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
{{!
2
    This file is part of Moodle - http://moodle.org/
3
 
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.
8
 
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.
13
 
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/>.
16
}}
17
{{!
18
    @template core_courseformat/local/content/section/header
19
 
20
    Displays a course section header.
21
 
22
    Example context (json):
23
    {
24
        "id": 123,
25
        "name": "Section title",
26
        "title": "<a href=\"http://moodle/course/view.php?id=5#section-0\">Section title</a>",
27
        "url": "#",
28
        "headerdisplaymultipage": true,
29
        "sectionbulk": true,
1441 ariadna 30
        "editing": 0,
31
        "headinglevel": 3
1 efrain 32
    }
33
}}
34
{{#sectionbulk}}
35
{{$ core_courseformat/local/content/section/bulkselect }}
36
    {{> core_courseformat/local/content/section/bulkselect }}
37
{{/ core_courseformat/local/content/section/bulkselect }}
38
{{/sectionbulk}}
39
{{#headerdisplaymultipage}}
40
    {{^displayonesection}}
41
        <h3 id="sectionid-{{id}}-title" class="h4 sectionname">
42
            {{{title}}}
43
        </h3>
44
    {{/displayonesection}}
45
{{/headerdisplaymultipage}}
46
{{^headerdisplaymultipage}}
47
    {{#sitehome}}
48
        <h2 id="sectionid-{{id}}-title" class="h3 sectionname">
49
            {{{title}}}
50
        </h2>
51
    {{/sitehome}}
52
    {{^sitehome}}
53
        {{^displayonesection}}
1441 ariadna 54
            <div class="d-flex align-items-center position-relative">
1 efrain 55
                <a role="button"
1441 ariadna 56
                    data-bs-toggle="collapse"
1 efrain 57
                    data-for="sectiontoggler"
1441 ariadna 58
                    href="#coursecontentcollapseid{{id}}"
59
                    id="collapsesectionid{{id}}"
1 efrain 60
                    aria-expanded="{{^contentcollapsed}}true{{/contentcollapsed}}{{#contentcollapsed}}false{{/contentcollapsed}}"
1441 ariadna 61
                    aria-controls="coursecontentcollapseid{{id}}"
62
                    class="btn btn-icon me-3 icons-collapse-expand
1 efrain 63
                        {{#contentcollapsed}} collapsed {{/contentcollapsed}}"
64
                    aria-label="{{name}}">
65
                <span class="expanded-icon icon-no-margin p-2" title="{{#str}} collapse, core {{/str}}">
66
                    {{#pix}} t/expandedchevron, core {{/pix}}
1441 ariadna 67
                    <span class="visually-hidden">{{#str}} collapse, core {{/str}}</span>
1 efrain 68
                </span>
69
                <span class="collapsed-icon icon-no-margin p-2" title="{{#str}} expand, core {{/str}}">
70
                    <span class="dir-rtl-hide">{{#pix}} t/collapsedchevron, core {{/pix}}</span>
71
                    <span class="dir-ltr-hide">{{#pix}} t/collapsedchevron_rtl, core {{/pix}}</span>
1441 ariadna 72
                    <span class="visually-hidden">{{#str}} expand, core {{/str}}</span>
1 efrain 73
                </span>
74
                </a>
1441 ariadna 75
                <h{{headinglevel}} class="h4 sectionname course-content-item d-flex align-self-stretch align-items-center mb-0"
1 efrain 76
                    id="sectionid-{{id}}-title" data-for="section_title" data-id="{{id}}" data-number="{{num}}">
77
                    {{{title}}}
1441 ariadna 78
                </h{{headinglevel}}>
1 efrain 79
            </div>
80
        {{/displayonesection}}
81
    {{/sitehome}}
82
{{/headerdisplaymultipage}}