You are here

remote_image.module in Remote image 8

File

remote_image.module
View source
<?php

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

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

Functions

Namesort descending Description
remote_image_help Implements hook_help().