You are here

function amazon_filter_help in Amazon Product Advertisement API 8.2

Implements hook_help().

File

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

Code

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

    // Main module help for the amazon_filter module.
    case 'help.page.amazon_filter':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Provides a text filter to create links to Amazon products.') . '</p>';
      return $output;
    default:
  }
}