You are here

function email_verify_help in Email Verify 5

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

Display help and module information

Parameters

section which section of the site we're displaying help: @return help text for section

File

./email_verify.module, line 14

Code

function email_verify_help($section = '') {
  $output = '';
  switch ($section) {
    case '':
      $output = '';
      break;
  }
  return $output;
}