Proyectos de Subversion Moodle

Rev

| 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,
30
        "editing": 0
31
    }
32
}}
33
{{#sectionbulk}}
34
{{$ core_courseformat/local/content/section/bulkselect }}
35
    {{> core_courseformat/local/content/section/bulkselect }}
36
{{/ core_courseformat/local/content/section/bulkselect }}
37
{{/sectionbulk}}
38
{{#headerdisplaymultipage}}
39
    {{^displayonesection}}
40
        <h3 id="sectionid-{{id}}-title" class="h4 sectionname">
41
            {{{title}}}
42
        </h3>
43
    {{/displayonesection}}
44
{{/headerdisplaymultipage}}
45
{{^headerdisplaymultipage}}
46
    {{#sitehome}}
47
        <h2 id="sectionid-{{id}}-title" class="h3 sectionname">
48
            {{{title}}}
49
        </h2>
50
    {{/sitehome}}
51
    {{^sitehome}}
52
        {{^displayonesection}}
53
            <div class="d-flex align-items-start position-relative">
54
                <a role="button"
55
                    data-toggle="collapse"
56
                    data-for="sectiontoggler"
57
                    href="#coursecontentcollapse{{num}}"
58
                    id="collapssesection{{num}}"
59
                    aria-expanded="{{^contentcollapsed}}true{{/contentcollapsed}}{{#contentcollapsed}}false{{/contentcollapsed}}"
60
                    aria-controls="coursecontentcollapse{{num}}"
61
                    class="btn btn-icon mr-3 icons-collapse-expand justify-content-center
62
                        {{#contentcollapsed}} collapsed {{/contentcollapsed}}"
63
                    aria-label="{{name}}">
64
                <span class="expanded-icon icon-no-margin p-2" title="{{#str}} collapse, core {{/str}}">
65
                    {{#pix}} t/expandedchevron, core {{/pix}}
66
                </span>
67
                <span class="collapsed-icon icon-no-margin p-2" title="{{#str}} expand, core {{/str}}">
68
                    <span class="dir-rtl-hide">{{#pix}} t/collapsedchevron, core {{/pix}}</span>
69
                    <span class="dir-ltr-hide">{{#pix}} t/collapsedchevron_rtl, core {{/pix}}</span>
70
                </span>
71
                </a>
72
                <h3 class="h4 sectionname course-content-item d-flex align-self-stretch align-items-center mb-0"
73
                    id="sectionid-{{id}}-title" data-for="section_title" data-id="{{id}}" data-number="{{num}}">
74
                    {{{title}}}
75
                </h3>
76
            </div>
77
        {{/displayonesection}}
78
    {{/sitehome}}
79
{{/headerdisplaymultipage}}