You are here

function check_dns_help in Check DNS 7

Same name and namespace in other branches
  1. 8 check_dns.module \check_dns_help()

Implements hook_help().

File

./check_dns.module, line 11
Prevents user registration with invalid email domain.

Code

function check_dns_help($path, $arg) {
  switch ($path) {
    case 'admin/help#check_dns':
      $output = '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The Check DNS module simply prevents user registration with invalid email domain on user registration form.') . '</p>';
      $output .= '<p>' . t('It validates email domain before registration and checks if the domain exists. This prevents false registration.') . '</p>';
      return $output;
  }
}