Skip to content

Commit

Permalink
closes #9
Browse files Browse the repository at this point in the history
  • Loading branch information
benkeen committed Feb 11, 2019
1 parent 8244ca8 commit dd864fc
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions module_config.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@
"Key" => "",
"Default" => ""
),
array(
"Field" => "field_identifier",
"Type" => "varchar(255)",
"Null" => "YES",
"Key" => "",
"Default" => ""
),
array(
"Field" => "field_orientation",
"Type" => "enum('horizontal','vertical','na')",
Expand Down Expand Up @@ -98,6 +105,7 @@
)
);


$HOOKS = array(
array(
"hook_type" => "template",
Expand All @@ -120,6 +128,7 @@
"hook_function" => "displayFields",
"priority" => "50"
),

array(
"hook_type" => "template",
"action_location" => "admin_edit_client_settings_top",
Expand Down Expand Up @@ -200,10 +209,17 @@
array(
"hook_type" => "code",
"action_location" => "start",
"function_name" => "FormTools\\Views::getViewFilterSql",
"function_name" => "FormTools\\ViewFilters::getViewFilterSql",
"hook_function" => "updateViewFilterSqlPlaceholders",
"priority" => "50"
)
),
array(
"hook_type" => "code",
"action_location" => "main",
"function_name" => "FormTools\\User->getAccountPlaceholders",
"hook_function" => "getExtendedClientFieldPlaceholders",
"priority" => "50"
)
);


Expand Down

0 comments on commit dd864fc

Please sign in to comment.