Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 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/delegatedsection
19
 
20
    Displays a course section.
21
 
22
    Note: This template is a wrapper around the section/content template to allow course formats and theme designers to
23
    modify parts of the wrapper without having to copy/paste the entire template.
24
 
25
    Example context (json):
26
    {
27
        "num": 3,
28
        "id": 35,
29
        "sectionname": "Section title",
30
        "controlmenu": "[tools menu]",
31
        "header": {
32
            "name": "Section title",
33
            "title": "<a href=\"http://moodle/course/view.php?id=5#section-0\">Section title</a>",
34
            "url": "#",
35
            "ishidden": true,
36
            "headinglevel": 3
37
        },
38
        "cmlist": {
39
            "cms": [
40
                {
41
                    "cmitem": {
42
                        "cmformat": {
43
                            "cmname": "<a class=\"aalink\" href=\"#\"><span class=\"instancename\">Assign example</span></a>",
44
                            "hasname": "true"
45
                        },
46
                        "id": 4,
47
                        "anchor": "activity-4",
48
                        "module": "assign",
49
                        "extraclasses": ""
50
                    }
51
                }
52
            ],
53
            "hascms": true
54
        },
55
        "ishidden": false,
56
        "iscurrent": true,
57
        "currentlink": "<span class=\"accesshide\">This topic</span>",
58
        "availability": {
59
            "info": "<span class=\"badge bg-info\">Hidden from students</span>",
60
            "hasavailability": true
61
        },
62
        "summary": {
63
            "summarytext": "Summary text!"
64
        },
65
        "controlmenu": {
66
            "menu": "<a href=\"#\" class=\"d-inline-block dropdown-toggle icon-no-margin\">Edit<b class=\"caret\"></b></a>",
67
            "hasmenu": true
68
        },
69
        "cmcontrols": "[Add an activity or resource]",
70
        "iscoursedisplaymultipage": true,
71
        "sectionreturnnum": 0,
72
        "contentcollapsed": false,
73
        "sitehome": false,
74
        "highlightedlabel" : "Highlighted"
75
    }
76
}}
77
<ul class="p-0">
78
    <li id="section-{{num}}"
79
        class="section course-section main {{#onlysummary}} section-summary {{/onlysummary}} clearfix
80
                {{#ishidden}} hidden {{/ishidden}} {{#iscurrent}}{{^displayonesection}} current {{/displayonesection}}{{/iscurrent}}
81
                {{#isstealth}} orphaned {{/isstealth}} delegated-section"
82
        data-sectionid="{{num}}"
83
        data-sectionreturnnum="{{sectionreturnnum}}"
84
        data-for="section"
85
        data-id="{{id}}"
86
        data-number="{{num}}"
87
        data-sectionname="{{sectionname}}"
88
    >
89
        <div class="section-item">
90
            {{$ core_courseformat/local/content/section/content }}
91
                {{> core_courseformat/local/content/section/content }}
92
            {{/ core_courseformat/local/content/section/content }}
93
        </div>
94
    </li>
95
</ul>