Skip to content

Commit dd864fc

Browse files
committed
closes #9
1 parent 8244ca8 commit dd864fc

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

module_config.php

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,13 @@
3838
"Key" => "",
3939
"Default" => ""
4040
),
41+
array(
42+
"Field" => "field_identifier",
43+
"Type" => "varchar(255)",
44+
"Null" => "YES",
45+
"Key" => "",
46+
"Default" => ""
47+
),
4148
array(
4249
"Field" => "field_orientation",
4350
"Type" => "enum('horizontal','vertical','na')",
@@ -98,6 +105,7 @@
98105
)
99106
);
100107

108+
101109
$HOOKS = array(
102110
array(
103111
"hook_type" => "template",
@@ -120,6 +128,7 @@
120128
"hook_function" => "displayFields",
121129
"priority" => "50"
122130
),
131+
123132
array(
124133
"hook_type" => "template",
125134
"action_location" => "admin_edit_client_settings_top",
@@ -200,10 +209,17 @@
200209
array(
201210
"hook_type" => "code",
202211
"action_location" => "start",
203-
"function_name" => "FormTools\\Views::getViewFilterSql",
212+
"function_name" => "FormTools\\ViewFilters::getViewFilterSql",
204213
"hook_function" => "updateViewFilterSqlPlaceholders",
205214
"priority" => "50"
206-
)
215+
),
216+
array(
217+
"hook_type" => "code",
218+
"action_location" => "main",
219+
"function_name" => "FormTools\\User->getAccountPlaceholders",
220+
"hook_function" => "getExtendedClientFieldPlaceholders",
221+
"priority" => "50"
222+
)
207223
);
208224

209225

0 commit comments

Comments
 (0)