You are here

function amazon_field_help in Amazon Product Advertisement API 8.2

Implements hook_help().

File

modules/amazon_field/amazon_field.module, line 13
Contains amazon_field.module..

Code

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

    // Main module help for the amazon_field module.
    case 'help.page.amazon_field':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Provides a field to enter Amazon ASIN\'s.') . '</p>';
      return $output;
    default:
  }
}