-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.json
117 lines (117 loc) · 2.99 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "Instance Marker",
"namespace": "DCC\\Instance_tagger",
"description": "Clearly differentiate REDCap instances. A short text describing the REDCap instance is displayed in the upper right corner of every page, and every project page (if enabled). The URL is mapped to instances such as 'Localhost', 'Development', 'Testing', and 'Backup'. The tab title is prefixed with the text for the specific instance. The module must be enabled on all projects by default in order for the instance label to appear inside projects or enabled on a project by project basis.",
"authors": [
{
"name": "Greg Neils",
"email": "[email protected]",
"institution": "Columbia University"
}
],
"framework-version": 9,
"permissions": [
"redcap_every_page_top"
],
"enable-every-page-hooks-on-system-pages": true,
"system-settings": [
{
"key": "localhost_url",
"name": "Localhost URL",
"required": false,
"type": "text"
},
{
"key": "development_url",
"name": "Development URL",
"required": false,
"type": "text"
},
{
"key": "testing_url",
"name": "Testing URL",
"required": false,
"type": "text"
},
{
"key": "backup_url",
"name": "Backup URL",
"required": false,
"type": "text"
},
{
"key": "staging_url",
"name": "Staging URL",
"required": false,
"type": "text"
},
{
"key": "other_url",
"name": "Other URL",
"required": false,
"type": "text"
},
{
"key": "other_text",
"name": "Custom Text to display for 'Other URL'",
"required": false,
"type": "text"
},
{
"key": "offset_top",
"name": "Top Border: Pixels down from the TOP of the page",
"required": false,
"type": "text"
},
{
"key": "offset_right",
"name": "Right Border: Pixels from the RIGHT of the page",
"required": false,
"type": "text"
},
{
"key": "offset_bottom",
"name": "Bottom Border: Pixels from the BOTTOM of the page",
"required": false,
"type": "text"
},
{
"key": "offset_left",
"name": "Left Border: Pixels from the LEFT of the page",
"required": false,
"type": "text"
},
{
"key": "width_percent",
"name": "Width of the marker in percent. (0-100)",
"required": false,
"type": "text"
},
{
"key": "width",
"name": "Width of the marker in pixels. (5-1000)",
"required": false,
"type": "text"
},
{
"key": "height",
"name": "Height of the marker in pixels. (5-800)",
"required": false,
"type": "text"
},
{
"key": "bk_color",
"name": "Background color. Specify HTML color code including #",
"required": false,
"type": "text"
},
{
"key": "opacity",
"name": "Opacity (0-100)",
"required": false,
"type": "text"
}
],
"project-settings": [
]
}