-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.json
86 lines (86 loc) · 2.63 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
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
{
"name": "Project Ownership",
"namespace": "ProjectOwnership\\ExternalModule",
"description": "Collects project ownership data at project creation, requires PI contact details on research projects, and provides interfaces to search, display and edit ownership details. <strong><a href=\"https://github.com/ctsit/project_ownership\">See full documentation here</a></strong>.",
"framework-version": 8,
"permissions": [
"redcap_module_system_enable",
"redcap_module_system_change_version",
"redcap_every_page_before_render",
"redcap_every_page_top"
],
"authors": [
{
"name": "University of Florida CTS-IT",
"email": "CTSIT-REDCAP-MODULE-SUPPO@LISTS.UFL.EDU",
"institution": "University of Florida - CTSI"
}
],
"system-settings": [
{
"name": "Additional Text Toggle",
"key": "additional_text_toggle",
"type": "checkbox"
},
{
"name": "Additional Project Ownership Text",
"key": "additional_text",
"type": "rich-text",
"branchingLogic": {
"conditions":
[
{
"field": "additional_text_toggle",
"value": true
}
]
}
},
{
"name": "Enable features intended for use at the University of Florida",
"key": "enable_uf_features",
"type": "checkbox"
},
{
"name": "Show billable column",
"key": "show_billable_column",
"type": "checkbox",
"branchingLogic": {
"conditions":
[
{
"field": "enable_uf_features",
"value": true
}
]
}
},
{
"name": "Show sequestered column",
"key": "show_sequestered_column",
"type": "checkbox",
"branchingLogic": {
"conditions":
[
{
"field": "enable_uf_features",
"value": true
}
]
}
}
],
"links": {
"control-center": [
{
"name": "Project Ownership",
"icon": "user",
"url": "plugins/admin_ownership_list.php"
}
]
},
"enable-every-page-hooks-on-system-pages": true,
"compatibility": {
"redcap-version-min": "11.1.1"
}
}