function hook_domainignore in Domain Access 7.2
Same name and namespace in other branches
- 5 API.php \hook_domainignore()
- 6.2 API.php \hook_domainignore()
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_domainignore()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- domain_domainignore in ./
domain.module - Implements hook_domainignore().
1 invocation of hook_domainignore()
- domain_form_alter in ./
domain.module - Implements hook_form_alter()
File
- ./
domain.api.php, line 511 - API documentation file.
Code
function hook_domainignore() {
// User login should always be from the current domain.
return array(
'user_login',
);
}