-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathconfig.json
59 lines (59 loc) · 1.97 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
59
{
"name": "REDCap CSS Injector",
"namespace": "CSSInjector\\ExternalModule",
"description": "Allows administrators to inject CSS into survey pages, data entry pages, and every other project page. <strong><a href=\"https://github.com/ctsit/redcap_css_injector\">See full documentation here</a></strong>.",
"framework-version": 15,
"authors": [
{
"name": "University of Florida CTS-IT",
"email": "CTSIT-REDCAP-MODULE-SUPPO@LISTS.UFL.EDU",
"institution": "University of Florida - CTSI"
}
],
"project-settings": [
{
"name": "Styles",
"key": "styles",
"type": "sub_settings",
"repeatable": true,
"sub_settings": [
{
"name": "Enabled",
"key": "style_enabled",
"type": "checkbox"
},
{
"name": "Apply to survey pages",
"key": "survey",
"type": "checkbox"
},
{
"name": "Apply to data entry pages",
"key": "data_entry",
"type": "checkbox"
},
{
"name": "Apply to all other project pages",
"key": "other",
"type": "checkbox"
},
{
"name": "Apply to the following forms (leave blank to apply to all forms)",
"key": "style_forms",
"type": "form-list",
"repeatable": true,
"select2": true
},
{
"name": "CSS",
"key": "style_code",
"required": true,
"type": "textarea"
}
]
}
],
"compatibility": {
"redcap-version-min": "14.0.2"
}
}