-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
86 lines (86 loc) · 3.15 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
{
"name": "Survey Director",
"tt_name": "name",
"namespace": "INTERSECT\\SurveyDirector",
"description": "Directs participants through surveys as controlled by logic. Easily develop a 'flow' between your surveys and then to any external URL by configuring multiple alternative targets upon completion of any survey.",
"tt_description": "description",
"framework-version": 14,
"authors": [
{
"name": "Aidan Wilson",
"email": "[email protected]",
"institution": "Intersect Australia"
}
],
"project-settings": [
{
"key": "director_enabled",
"tt_name": "director_enabled",
"name": "Enabled?",
"type": "checkbox"
},
{
"key": "debug",
"tt_name": "debug",
"name": "Enable debug mode?</br><em>Director events will be output to the project log. Not recommended in production mode</em>",
"type": "checkbox"
},
{
"key": "survey",
"tt_name": "survey",
"name": "Survey",
"type": "sub_settings",
"repeatable": true,
"sub_settings": [
{
"key": "survey_enabled",
"tt_name": "survey_enabled",
"name": "Enabled?",
"type": "checkbox"
},
{
"key": "survey_select",
"tt_name": "survey_select",
"name": "Upon completion of",
"required": true,
"type": "form-list",
"visibility-filter": "public"
},
{
"key": "event_select",
"tt_name": "event_select",
"name": "In this event<br/>(Leave blank to apply to all events)",
"type": "event-list"
},
{
"key": "directive",
"tt_name": "directive",
"name": "Directive",
"type": "sub_settings",
"repeatable": true,
"sub_settings": [
{
"key": "directive_enabled",
"tt_name": "directive_enabled",
"name": "Enabled?",
"type": "checkbox"
},
{
"key": "condition",
"tt_name": "condition",
"name": "If this logic is true<br/>(leave blank to always redirect)",
"type": "text"
},
{
"key": "target",
"tt_name": "target",
"name": "Direct participant to this URL<br/>(accepts piping)",
"required": true,
"type": "text"
}
]
}
]
}
]
}