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
    Moodle is free software: you can redistribute it and/or modify
4
    it under the terms of the GNU General Public License as published by
5
    the Free Software Foundation, either version 3 of the License, or
6
    (at your option) any later version.
7
    Moodle is distributed in the hope that it will be useful,
8
    but WITHOUT ANY WARRANTY; without even the implied warranty of
9
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
    GNU General Public License for more details.
11
    You should have received a copy of the GNU General Public License
12
    along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
13
}}
14
{{!
15
    @template mod_survey/response_action_bar
16
    Actions bar for the reports page UI.
17
    Classes required for JS:
18
    * none
19
    Context variables required for this template:
20
    * see mod/survey/classes/output/actionbar.php
21
    Example context (json):
22
    {
23
        "download": {
24
            "link": "http://foobar",
25
            "text": "foobar site",
26
            "urlselect": {
27
                "id": "url_select123",
28
                "sesskey": "sesskey",
29
                "action": "http://localhost/moodle/course/jumpto.php",
30
                "disabled": false,
31
                "formid": "surveyresponseselect",
32
                "classes": "urlselect",
33
                "options": [
34
                    {
35
                        "name": "Summary",
36
                        "value": "/mod/survey/report.php?id=12&action=summary",
37
                        "selected": true
38
                    },
39
                    {
40
                        "name": "Scales",
41
                        "value": "/mod/survey/report.php?id=12&action=scales",
42
                        "selected": false
43
                    },
44
                    {
45
                        "name": "Questions",
46
                        "value": "/mod/survey/report.php?id=12&action=questions",
47
                        "selected": false
48
                    },
49
                    {
50
                        "name": "Participants",
51
                        "value": "/mod/survey/report.php?id=12&action=students",
52
                        "selected": false
53
                    }
54
                ]
55
            }
56
        }
57
    }
58
}}
59
<div class="container-fluid tertiary-navigation">
60
    <div class="row">
61
        {{#urlselect}}
62
            <div class="navitem">
63
                {{>core/url_select}}
64
            </div>
65
        {{/urlselect}}
66
        {{#download}}
67
            <div class="navitem ml-sm-auto">
68
                <a class="btn btn-secondary float-right" href="{{link}}">{{text}}</a>
69
            </div>
70
        {{/download}}
71
    </div>
72
</div>