-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json
More file actions
109 lines (96 loc) · 2.25 KB
/
Copy pathconfig.json
File metadata and controls
109 lines (96 loc) · 2.25 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "BootstrapSliderEM",
"namespace": "Utah\\BootstrapSliderEM",
"description": "This module configures a bootstrap slider within a descriptive text field, with multiple data points enabled within the slider",
"documentation": "README.md",
"authors": [ {
"name": "Sumon Chattopadhyay",
"email": "sumon.chattopadhyay@utah.edu",
"institution": "University of Utah BMIC"
}
],
"permissions": [
"redcap_survey_page_top",
"redcap_data_entry_form_top"
],
"enable-every-page-hooks-on-system-pages":false,
"links": {
"project": [
],
"control-center": [
]
},
"no-auth-pages": [
],
"project-settings": [
{
"key": "slide-location",
"name": "Location of Slider",
"required": true,
"type": "sub_settings",
"repeatable": true,
"sub_settings": [
{
"key": "descriptive-text-loc",
"name": "Descriptive text field to place slider",
"required": true,
"type": "field-list"
},
{
"key": "left-data-loc",
"name": "Left (low value) data point for this slider",
"required": true,
"type": "field-list"
},
{
"key": "left-data-min",
"name": "Minimum value for left data point",
"required": false,
"type": "dropdown",
"choices": [
{
"name": "0",
"value": 0
},
{
"name": "1",
"value": 1
}
]
},
{
"key": "right-data-loc",
"name": "Right (high value) data point for this slider",
"required": true,
"type": "field-list"
},
{
"key": "right-data-max",
"name": "Maximum value for right data point",
"required": false,
"type": "dropdown",
"choices": [
{
"name": "10",
"value": 10
},
{
"name": "100",
"value": 0
}
]
}
]
}
],
"system-settings": [
],
"crons": [
],
"compatibility": {
"php-version-min": "",
"php-version-max": "",
"redcap-version-min": "",
"redcap-version-max": ""
}
}