You are here

function email_verify_help in Email Verify 6

Same name and namespace in other branches
  1. 8.2 email_verify.module \email_verify_help()
  2. 5 email_verify.module \email_verify_help()
  3. 7.2 email_verify.module \email_verify_help()
  4. 7 email_verify.module \email_verify_help()

Implementation of hook_help().

Return value

Help text for section.

File

./email_verify.module, line 14
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_help($path, $arg) {
  if ($path == 'admin/help#email_verify') {
    $txt = 'This module verifies that email addresses are valid during account registration or edit.';
    return '<p>' . t($txt) . '</p>';
  }
}