You are here

function serial_help in Serial Field 8

Implements hook_help().

File

./serial.module, line 16
The Serial module main file.

Code

function serial_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.serial':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Defines serial field type.') . '</p>';
      return $output;
  }
}