You are here

function email_verify_user in Email Verify 6

Same name and namespace in other branches
  1. 5 email_verify.module \email_verify_user()

Implementation of hook_user().

File

./email_verify.module, line 24
Verifies thoroughly that email addresses are correctly entered Copyright: Daniel Bonniot <bonniot@users.sourceforge.net> License: GNU GPL v2 or later

Code

function email_verify_user($op, &$edit, &$account, $category = NULL) {
  if ($op == 'validate' && $category == 'account') {
    return email_verify_edit_validate(arg(1), $edit);
  }
}