You are here

amazon_field.module in Amazon Product Advertisement API 8.2

Contains amazon_field.module..

File

modules/amazon_field/amazon_field.module
View source
<?php

/**
 * @file
 * Contains amazon_field.module..
 */
use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
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:
  }
}

Functions

Namesort descending Description
amazon_field_help Implements hook_help().