You are here

function image_resize_filter_help in Image Resize Filter 8

Same name and namespace in other branches
  1. 6 image_resize_filter.module \image_resize_filter_help()
  2. 7 image_resize_filter.module \image_resize_filter_help()

Implements hook_help().

File

./image_resize_filter.module, line 15
Contains image_resize_filter.module.

Code

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

    // Main module help for the image_resize_filter module.
    case 'help.page.image_resize_filter':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Resizes images based on width and height attributes and optionally link to the original image.') . '</p>';
      return $output;
    default:
  }
}