You are here

function hook_janrain_capture_verification_resent in Janrain Registration 7

Same name and namespace in other branches
  1. 7.4 janrain_capture.api.php \hook_janrain_capture_verification_resent()
  2. 7.2 janrain_capture.api.php \hook_janrain_capture_verification_resent()
  3. 7.3 janrain_capture.api.php \hook_janrain_capture_verification_resent()

Verification email resent

Triggered when the janrain_capture/resend_verification_email URL is requested. This URL is passed in as the confirmation redirect to Capture's email resend method.

Return value

boolean Display the default message and redirect to the home page or neither

1 invocation of hook_janrain_capture_verification_resent()
janrain_capture_resend_verification_email in ./janrain_capture.pages.inc
Callback for the janrain_capture/resend_verification_email menu item. Displays a confirmation message that a verification email was resent.

File

./janrain_capture.api.php, line 172
Hooks provided by Janrain Capture

Code

function hook_janrain_capture_verification_resent() {
  drupal_set_message(t('Go check your email!'), 'status');
  return FALSE;
}