function hook_domain_ignore in Domain Access 7.3
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.
1 function implements hook_domain_ignore()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- domain_domain_ignore in ./
domain.module - Implements hook_domain_ignore().
1 invocation of hook_domain_ignore()
- domain_form_alter in ./
domain.module - Implements hook_form_alter().
File
- ./
domain.api.php, line 510 - API documentation file.
Code
function hook_domain_ignore() {
// User login should always be from the current domain.
return array(
'user_login',
);
}