hook_domainignore

Definition

hook_domainignore()
API.php, line 476

Description

Return an array of forms for which we cannot run hook_form_alter().

Return value

An array of form ids that should not run through domain_form_alter.

Code

function hook_domainignore() {
  // User login should always be from the current domain.
  return array('user_login');
}