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 mod_lesson/edit_action_area
19
 
20
    Edit navigation for the lesson.
21
 
22
    Classes required for JS:
23
    * none
24
 
25
    Context variables required for this template:
26
    * see mod/lesson/classes/output/edit_action_area.php
27
 
28
    Example context (json):
29
    {
30
        "back": {
31
            "link": "https://moodle.org",
32
            "text": "Back"
33
        },
34
        "viewselect": {
35
            "id": "url_select_test",
36
            "action": "https://example.com/post",
37
            "formid": "url_select_form",
38
            "sesskey": "sesskey",
39
            "label": "core/url_select",
40
            "helpicon": {
41
                "title": "Help with something",
42
                "text": "Help with something",
43
                "url": "http://example.org/help",
44
                "linktext": "",
45
                "icon":{
46
                    "extraclasses": "iconhelp",
47
                    "attributes": [
48
                        {"name": "src", "value": "../../../pix/help.svg"},
49
                        {"name": "alt", "value": "Help icon"}
50
                    ]
51
                }
52
            },
53
            "showbutton": "Go",
54
            "options": [{
55
                "name": "Group 1", "isgroup": true, "options":
56
                [
57
                    {"name": "Item 1", "isgroup": false, "value": "1"},
58
                    {"name": "Item 2", "isgroup": false, "value": "2"}
59
                ]},
60
                {"name": "Group 2", "isgroup": true, "options":
61
                [
62
                    {"name": "Item 3", "isgroup": false, "value": "3"},
63
                    {"name": "Item 4", "isgroup": false, "value": "4"}
64
                ]}],
65
            "disabled": false,
66
            "title": "Some cool title"
67
        },
68
        "headinglevel": 3,
69
        "heading": "Some heading"
70
    }
71
 
72
}}
73
<div class="container-fluid tertiary-navigation">
74
    <div class="row">
75
        <div class="navitem">
76
            <a class="btn btn-secondary" href="{{back.link}}">{{back.text}}</a>
77
        </div>
78
        {{#viewselect}}
79
            <div class="navitem">
80
            {{>core/url_select}}
81
            </div>
82
        {{/viewselect}}
83
    </div>
84
</div>
85
<h{{headinglevel}}>{{heading}}</h{{headinglevel}}>