-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfig.json
73 lines (73 loc) · 2.58 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
{
"name": "Custom Template Engine",
"namespace": "BCCHR\\CustomTemplateEngine",
"description": "This module allows you to create HTML templates and fill them with record data from your project. You can download the filled templates as a PDF, which are saved to the File Repository.",
"authors": [
{
"name": "BCCHR Development Team (original work by Ashley Lee)",
"email": "[email protected]",
"institution": "BC Children's Hospital Research Institute"
}
],
"links": {
"project": [
{
"name": "Custom Template Engine",
"url": "index.php",
"icon": "link"
}
]
},
"compatibility": {
"php-version-min": "7.4.0",
"php-version-max": "",
"redcap-version-min": "12.4.0",
"redcap-version-max": ""
},
"system-settings": [
{
"key": "templates-folder",
"name": "Saved Templates Directory Path. Will be created if it doesn't exist.",
"required": true,
"type": "text",
"repeatable": false,
"super-users-only": true
},
{
"key": "compiled-templates-folder",
"name": "Compiled Templates Directory Path. Will be created if it doesn't exist. **Used by Smarty to store compiled templates**",
"required": true,
"type": "text",
"repeatable": false,
"super-users-only": true
},
{
"key": "temp-folder",
"name": "Temporary Files Directory Path. Will be created if it doesn't exist.",
"required": true,
"type": "text",
"super-users-only": true
},
{
"key": "img-folder",
"name": "Images Folder. Will be created if it doesn't exist. **Must be a publically acccessible folder that can be given as either a full path, or relative path to your REDCap external modules folder i.e '../../images'**",
"required": true,
"type": "text",
"repeatable": false,
"super-users-only": true
}
],
"no-csrf-pages": [
"BrowseImages", "UploadImages"
],
"project-settings": [
{
"key": "save-report-to-repo",
"name": "Do Not Save Filled Reports to File Repository",
"type": "checkbox",
"repeatable": false,
"super-users-only": true
}
],
"framework-version": 9
}