You are here

function check_dns_help in Check DNS 8

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

Implements hook_help().

File

./check_dns.module, line 16
Contains check_dns.module.

Code

function check_dns_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the check_dns module.
    case 'help.page.check_dns':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Checks if email domain has DNS Record before user registration.') . '</p>';
      return $output;
    default:
  }
}