You are here

function hook_redhen_filter_form_blacklist_alter in RedHen CRM 7

Alter the list of excluded filter field types.

Parameters

array $blacklist:

1 invocation of hook_redhen_filter_form_blacklist_alter()
redhen_filter_form_blacklist in ./redhen.module
Provide an alterable array of field types to exclude from RedHen filters.

File

./redhen.api.php, line 114
Hooks provided by the RedHen contact module.

Code

function hook_redhen_filter_form_blacklist_alter(array &$blacklist) {
  $blacklist[] = 'image';
}