You are here

function remote_image_help in Remote image 8

Implements hook_help().

File

./remote_image.module, line 13
Contains remote_image.module.

Code

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

    // Main module help for the remote_image module.
    case 'help.page.remote_image':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Allows the use of remote images with some meta data.') . '</p>';
      return $output;
    default:
  }
}