hook_domainignore()Return an array of forms for which we cannot run hook_form_alter().
An array of form ids that should not run through domain_form_alter.
./API.php, line 546
<?php
function hook_domainignore() {
// User login should always be from the current domain.
return array('user_login');
}
?>