-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmodule_config.php
75 lines (72 loc) · 1.97 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
<?php
$STRUCTURE = array();
$HOOKS = array(
array(
"hook_type" => "code",
"action_location" => "start",
"function_name" => "FormTools\\Pages::constructPageUrl",
"hook_function" => "constructPageUrl",
"priority" => "50"
),
array(
"hook_type" => "code",
"action_location" => "middle",
"function_name" => "FormTools\\Menus::getAdminMenuPagesDropdown",
"hook_function" => "addReportBuilderMenuItems",
"priority" => "50"
),
array(
"hook_type" => "code",
"action_location" => "middle",
"function_name" => "FormTools\\Menus::getClientMenuPagesDropdown",
"hook_function" => "addReportBuilderMenuItems",
"priority" => "50"
),
array(
"hook_type" => "template",
"action_location" => "head_bottom",
"function_name" => "",
"hook_function" => "includeInHead",
"priority" => "50"
),
array(
"hook_type" => "code",
"action_location" => "main",
"function_name" => "FormTools\\Submissions::displaySubmissionListingQuicklinks",
"hook_function" => "addQuicklink",
"priority" => "50"
)
);
$FILES = array(
"code/",
"code/actions.php",
"code/General.class.php",
"code/index.html",
"code/Module.class.php",
"css/",
"css/index.html",
"css/reports.css",
"images/",
"images/icon_report_builder.png",
"images/icon_report_builder16x16.png",
"lang/",
"lang/en_us.php",
"lang/index.html",
"scripts/",
"scripts/reports.js",
"templates/",
"templates/heading.tpl",
"templates/help.tpl",
"templates/index.html",
"templates/index.tpl",
"templates/report.tpl",
"templates/reports.tpl",
"help.php",
"index.php",
"library.php",
"LICENSE",
"module_config.php",
"README.md",
"report.php",
"reports.php"
);