-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmodule_config.php
146 lines (142 loc) · 3.81 KB
/
module_config.php
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<?php
$STRUCTURE = array();
$HOOKS = array(
array(
"hook_type" => "code",
"action_location" => "end",
"function_name" => "FormTools\\Fields::addFormFieldsAdvanced",
"hook_function" => "hookAddFormFields",
"priority" => "50"
),
array(
"hook_type" => "code",
"action_location" => "end",
"function_name" => "FormTools\\Fields::deleteFormFields",
"hook_function" => "hookDeleteFormFields",
"priority" => "50"
),
array(
"hook_type" => "code",
"action_location" => "end",
"function_name" => "FormTools\\Forms::finalizeForm",
"hook_function" => "hookFinalizeForm",
"priority" => "50"
),
array(
"hook_type" => "code",
"action_location" => "start",
"function_name" => "FormTools\\Forms::deleteForm",
"hook_function" => "hookDeleteForm",
"priority" => "50"
),
array(
"hook_type" => "code",
"action_location" => "end",
"function_name" => "FormTools\\General::alterTableColumn",
"hook_function" => "renameTableColumn",
"priority" => "50"
),
array(
"hook_type" => "code",
"action_location" => "end",
"function_name" => "FormTools\\Submissions::createBlankSubmission",
"hook_function" => "hookCreateBlankSubmission",
"priority" => "50"
),
array(
"hook_type" => "code",
"action_location" => "end",
"function_name" => "FormTools\\Submissions::processFormSubmission",
"hook_function" => "hookProcessForm",
"priority" => "50"
),
array(
"hook_type" => "code",
"action_location" => "start",
"function_name" => "FormTools\\Submissions::deleteSubmission",
"hook_function" => "hookDeleteSubmission",
"priority" => "50"
),
array(
"hook_type" => "code",
"action_location" => "start",
"function_name" => "FormTools\\Submissions::deleteSubmissions",
"hook_function" => "hookDeleteSubmissions",
"priority" => "50"
),
array(
"hook_type" => "code",
"action_location" => "end",
"function_name" => "FormTools\\Submissions::updateSubmission",
"hook_function" => "hookUpdateSubmission",
"priority" => "50"
),
array(
"hook_type" => "code",
"action_location" => "start",
"function_name" => "FormTools\\Submissions::updateSubmission",
"hook_function" => "hookUpdateSubmissionInit",
"priority" => "50"
),
array(
"hook_type" => "code",
"action_location" => "end",
"function_name" => "FormTools\\Modules\\FormBackup\\General::duplicateForm",
"hook_function" => "hookOnFormBackup",
"priority" => "50"
),
array(
"hook_type" => "code",
"action_location" => "end",
"function_name" => "FormTools\\Modules\\FieldTypeFile\\Module->deleteFileSubmission",
"hook_function" => "hookDeleteFileSubmission",
"priority" => "50"
),
array(
"hook_type" => "template",
"action_location" => "admin_edit_submission_bottom",
"function_name" => "",
"hook_function" => "hookDisplaySubmissionChangelog",
"priority" => "50"
),
array(
"hook_type" => "code",
"action_location" => "main",
"function_name" => "FormTools\\Themes::getPage",
"hook_function" => "hookIncludeModuleResources",
"priority" => "50"
)
);
$FILES = array(
"code/",
"code/actions.php",
"code/Code.class.php",
"code/General.class.php",
"code/Module.class.php",
"css/",
"css/styles.css",
"images/",
"images/icon_submission_history.gif",
"images/loading.gif",
"lang/",
"lang/en_us.php",
"scripts/",
"scripts/scripts.js",
"templates/",
"templates/admin_edit_submission.tpl",
"templates/ajax_pagination.tpl",
"templates/help.tpl",
"templates/index.tpl",
"templates/list_history.tpl",
"templates/settings.tpl",
"templates/undelete.tpl",
"templates/view_change_history.tpl",
"templates/view_deleted_submission.tpl",
"help.php",
"index.php",
"library.php",
"module_config.php",
"settings.php",
"undelete.php",
"view_deleted_submission.php"
);