<?php /** * @file * Contains islandora_image.module. */ use Drupal\Core\Routing\RouteMatchInterface; /** * Implements hook_help(). */ function islandora_image_help($route_name, RouteMatchInterface $route_match) { switch ($route_name) { // Main module help for the islandora_image module. case 'help.page.islandora_image': $output = ''; $output .= '<h3>' . t('About') . '</h3>'; $output .= '<p>' . t('Islandora Image') . '</p>'; return $output; default: } }