You are here

function autofill_help in Autofill 8

Same name and namespace in other branches
  1. 6 autofill.module \autofill_help()

Implements hook_help().

File

./autofill.module, line 17
Contains autofill.module.

Code

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

    // Main module help for the autofill module.
    case 'help.page.autofill':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('A field can automatically be autofilled while typing into another one.') . '</p>';
      return $output;
    default:
  }
}