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/movecm
19
 
20
    Displays the course index.
21
 
22
    Example context (json):
23
    {
24
        "cmname": "Activity name",
25
        "cmid": 42,
26
        "sections": [
27
            {
28
                "title": "General",
29
                "id": 42,
30
                "number": 1,
31
                "sectionurl": "#",
32
                "hascms": true,
33
                "cms": [
34
                    {
35
                        "name": "Glossary of characters",
36
                        "id": "10",
1441 ariadna 37
                        "url": "#",
38
                        "sectioninfo": false
1 efrain 39
                    },
40
                    {
41
                        "name": "World Cinema forum",
42
                        "id": "11",
1441 ariadna 43
                        "url": "#",
44
                        "sectioninfo": {
45
                            "title": "World Cinema forum",
46
                            "id": "11",
47
                            "number": "5",
48
                            "sectionurl": "#",
49
                            "hascms": true,
50
                            "cms": [
51
                                {
52
                                    "name": "Announcements",
53
                                    "id": "12",
54
                                    "url": "#",
55
                                    "sectioninfo": false
56
                                }
57
                            ]
58
                        }
1 efrain 59
                    },
60
                    {
61
                        "name": "Announcements",
62
                        "id": "12",
1441 ariadna 63
                        "url": "#",
64
                        "sectioninfo": false
1 efrain 65
                    }
66
                ]
67
            },
68
            {
69
                "title": "City of God or Cidade de Deus",
70
                "id": "43",
71
                "number": "2",
72
                "sectionurl": "#",
73
                "hascms": true,
74
                "cms": [
75
                    {
76
                        "name": "Resources",
77
                        "id": "13",
1441 ariadna 78
                        "url": "#",
79
                        "sectioninfo": false
1 efrain 80
                    },
81
                    {
82
                        "name": "Studying City of God by Stephen Smith Bergman-Messerschmidt",
83
                        "id": "14",
1441 ariadna 84
                        "url": "#",
85
                        "sectioninfo": false
1 efrain 86
                    },
87
                    {
88
                        "name": "Film education study guide",
89
                        "id": "15",
1441 ariadna 90
                        "url": "#",
91
                        "sectioninfo": false
1 efrain 92
                    }
93
                ]
94
            }
95
        ]
96
    }
97
 
98
}}
99
<p data-for="sectionname">{{information}}:</p>
1441 ariadna 100
<nav class="collapse-list move-activity-tree" id="destination-selector" role="tree">
1 efrain 101
    {{#sections}}
1441 ariadna 102
        <div data-for="sectionnode" role="treeitem">
103
            {{> core_courseformat/local/content/movecmsection}}
1 efrain 104
        </div>
105
    {{/sections}}
106
</nav>