forked from vanderbilt-redcap/patientLookupModule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
102 lines (85 loc) · 1.77 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "OrganRegistryModule",
"namespace": "RedcapAfrica\\OrganRegistryModule",
"description": "Creates a page to look up patients that match with a donated organ",
"documentation": "README.md",
"authors": [
{
"name": "Kyle McGuffin",
"email": "[email protected]",
"institution": "Vanderbilt University Medical Center"
}
],
"permissions": [
],
"enable-every-page-hooks-on-system-pages": false,
"links": {
"project": [
{
"name": "Organ Matching",
"icon": "magnifier",
"url": "patientLookup.php"
}
],
"control-center": [
]
},
"no-auth-pages": [
],
"project-settings": [
{
"key":"patient-matching-fields",
"type":"sub_settings",
"name": "Fields to find recipients",
"repeatable": true,
"sub_settings": [
{
"key":"search-fields",
"type":"field-list",
"name": "Fields to display on search form"
},
{
"key":"matching-fields",
"type":"field-list",
"name": "Matching field to match patient identity"
},
{
"key":"matching-logic",
"type":"dropdown",
"name": "Matching logic",
"choices": [
{
"name": "NOT EQUALS",
"value": "not"
},
{
"name": "EQUALS",
"value": "equals"
}
]
},
{
"key":"repeating-field",
"type":"checkbox",
"name": "Allow more than one search value for this field?"
}
]
},
{
"key":"display-fields",
"type":"field-list",
"name": "Fields to display in patient search results",
"repeatable":true
}
],
"system-settings": [
],
"crons": [
],
"compatibility": {
"php-version-min": "",
"php-version-max": "",
"redcap-version-min": "",
"redcap-version-max": ""
}
}