You are here

function field_image_style_help in Field Image Style 8

Implements hook_help().

File

./field_image_style.module, line 15
Contains field_image_style.module.

Code

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

    // Main module help for the field_image_style module.
    case 'help.page.field_image_style':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Defines a field type for images styles. This field value can be use by any image formatter.') . '</p>';
      return $output;
    default:
  }
}