-
Notifications
You must be signed in to change notification settings - Fork 7
/
config.json
83 lines (83 loc) · 2.65 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
{
"name": "Send Rx",
"namespace": "SendRx\\ExternalModule",
"description": "Send Rx is a REDCap extension that allows users to automatically generate prescriptions in PDF format and send them to pharmacies. See the <b><a href='https://github.com/ctsit/send_rx' target='_blank'>documentation</a></b> at <a href='https://github.com/ctsit/send_rx' target='_blank'>https://github.com/ctsit/send_rx</a>",
"permissions": [
"hook_every_page_before_render",
"hook_every_page_top",
"hook_save_record",
"hook_data_entry_form_top"
],
"authors": [
{
"name": "University of Florida CTS-IT",
"email": "CTSIT-REDCAP-MODULE-SUPPO@LISTS.UFL.EDU",
"institution": "University of Florida - CTSI"
}
],
"project-settings": [
{
"key": "send-rx-type",
"name": "Type",
"required": true,
"type": "radio",
"choices": [
{"value": "site", "name": "Site"},
{"value": "patient", "name": "Patient"}
]
},
{
"key": "send-rx-target-project-id",
"name": "Target project",
"required": true,
"type": "project-id"
},
{
"key": "send-rx-pdf-template",
"name": "PDF Template",
"type": "file"
},
{
"key": "send-rx-pdf-template-variable",
"name": "PDF Template Global Variables",
"required": false,
"type": "sub_settings",
"repeatable": "true",
"sub_settings": [
{
"key": "send-rx-pdf-template-variable-key",
"name": "Key",
"type": "text"
},
{
"key": "send-rx-pdf-template-variable-value",
"name": "Value",
"type": "text"
}
]
},
{
"key": "send-rx-message",
"name": "Message",
"required": false,
"type": "sub_settings",
"sub_settings": [
{
"key": "send-rx-message-subject",
"name": "Subject",
"type": "text"
},
{
"key": "send-rx-message-body",
"name": "Body",
"required": false,
"type": "rich-text"
}
]
}
],
"enable-every-page-hooks-on-system-pages": true,
"compatibility": {
"redcap-version-min": "8.0.3"
}
}