-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
58 lines (58 loc) · 2.19 KB
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "Section Collapse",
"description": "Adds a toggle switches to section headers on data entry and survey forms that can be used for showing and hiding all fields within each section.<br>Demo: <a target=\"_blank\" href=\"https://redcap.link/section-collapse\">https://redcap.link/section-collapse</a>",
"namespace": "MCRI\\SectionCollapse",
"authors": [
{
"name": "Luke Stevens",
"email": "luke.stevens@mcri.edu.au",
"institution": "Murdoch Children's Research Institute"
}
],
"framework-version": 12,
"compatibility": {
"redcap-version-min": "13.1.2"
},
"auth-ajax-actions": [ "user-mode-preference" ],
"system-settings": [ ],
"project-settings": [
{
"key": "project-default",
"name": "Project default option<br><span class=\"text-muted\">Default is both modes available.</span>",
"required": false,
"type": "dropdown",
"choices": [
{ "value": "a", "name": "Accordion mode only" },
{ "value": "b", "name": "By section mode only" },
{ "value": "d", "name": "Disabled" }
]
},
{
"key": "instrument-override",
"name": "Instrument-level override",
"required": false,
"type": "sub_settings",
"repeatable": true,
"sub_settings": [
{
"name": "Instrument",
"key": "instrument",
"required": true,
"type": "form-list"
},
{
"key": "instrument-mode",
"name": "Instrument option<br><span class=\"text-muted\">(To override project default mode, above)</span>",
"required": true,
"type": "dropdown",
"choices": [
{ "value": "ab", "name": "Allow both" },
{ "value": "a", "name": "Accordion mode only" },
{ "value": "b", "name": "By section mode only" },
{ "value": "d", "name": "Disabled" }
]
}
]
}
]
}