You are here

function json_field_help in JSON Field 8

Implements hook_help().

File

./json_field.module, line 13
Primary hook implementations for the JSON Field module.

Code

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

    // Main module help for the json_field module.
    case 'help.page.json_field':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Provides a JSON field, widgets and a formatter, and Views integration.') . '</p>';
      return $output;
    default:
  }
}