You are here

function hook_entityconnect_exclude_forms_alter in Entity connect 7

Same name and namespace in other branches
  1. 8.2 entityconnect.api.php \hook_entityconnect_exclude_forms_alter()
  2. 7.2 entityconnect.api.php \hook_entityconnect_exclude_forms_alter()

hook_entityconnect_exclude_forms_alter().

Allow modules to alter the list of exclude forms. If you don't want a specific forms to be proceeded, or if Entityconnect affects

Parameters

$exclude_forms:

Return value

array of forms that not be proceeded.

See also

entityconnect_child_form_alter()

1 invocation of hook_entityconnect_exclude_forms_alter()
entityconnect_child_form_alter in includes/entityconnect.form.inc
Alters child create form.

File

./entityconnect.api.php, line 18

Code

function hook_entityconnect_exclude_forms_alter(&$exclude_forms) {
  $exclude_forms = array(
    'search_block_form',
    'page_node_form',
  );
}