You are here

image_raw_formatter.module in Image Raw Formatter 8

File

image_raw_formatter.module
View source
<?php

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

/**
 * Implements hook_help().
 */
function image_raw_formatter_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.image_raw_formatter':
      return 'Image Raw formatter for Drupal 8';
  }
}

Functions

Namesort descending Description
image_raw_formatter_help Implements hook_help().