-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
65 lines (65 loc) · 2.49 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
{
"// EM Template repo": "https://github.com/vanderbilt-redcap/external_module_template",
"// framework documentation README": "https://github.com/vanderbilt-redcap/external-module-framework-docs/tree/main?tab=readme-ov-file#redcap-external-module-framework-documentation",
"name": "external_module_template",
"description": "module description",
"namespace": "ExternalModuleTemplate\\ExternalModule",
"documentation": "README.md",
"// framework version documentation": "https://github.com/vanderbilt-redcap/external-module-framework-docs/tree/main/versions",
"framework-version": 16,
"authors": [
{
"name": "M. Commodore",
"email": "[email protected]",
"institution": "Vanderbilt University Medical Center"
}
],
"// configuration documentation": "https://github.com/vanderbilt-redcap/external-module-framework-docs/blob/main/config.md",
"system-settings": [
{
"name": "A medium length description of the field",
"key": "description_system_setting",
"type": "descriptive"
},
{
"name": "System Setting",
"key": "system_setting",
"type": "text"
}
],
"project-settings": [
{
"name": "Project Setting",
"key": "project_setting",
"type": "text",
"hidden": true
}
],
"// pages documentation": "https://github.com/vanderbilt-redcap/external-module-framework-docs/blob/main/pages.md",
"links": {
"project": [
{
"name": "Project Page",
"icon": "fa fa-cloud-arrow-up",
"url": "pages/project_page.php",
"show-header-and-footer": true
}
]
},
"// crons documentation": "https://github.com/vanderbilt-redcap/external-module-framework-docs/blob/main/crons.md",
"crons": [
{
"cron_name": "cron1",
"cron_description": "Cron that runs every 30 minutes to do X",
"method": "myCronFunction",
"cron_frequency": "1800",
"cron_max_run_time": "86400"
}
],
"// ajax documentation": "https://github.com/vanderbilt-redcap/external-module-framework-docs/blob/main/ajax.md",
"auth-ajax-actions": [
"action1"
],
"// compatibility documentation": "https://github.com/vanderbilt-redcap/external-module-framework-docs/blob/main/compatibility.md",
"compatibility": {}
}