You are here

function hook_validate_email_address in Friendly Register 7

Allows you to provide your own validation routines for email addresses beyond the valid_email_address() call.

Parameters

string $address:

Return value

bool

1 function implements hook_validate_email_address()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

friendly_register_validate_email_address in ./friendly_register.module
Implements hook_validate_email_address().
1 invocation of hook_validate_email_address()
friendly_register_check_email in ./friendly_register.module
JSON callback to check the email address.

File

./friendly_register.api.php, line 21
Hooks provided by the friendly_register module.

Code

function hook_validate_email_address($address) {
  return TRUE;
}