You are here

function entity_usage_help in Entity Usage 8.3

Same name and namespace in other branches
  1. 8.4 entity_usage.module \entity_usage_help()
  2. 8 entity_usage.module \entity_usage_help()
  3. 8.2 entity_usage.module \entity_usage_help()

Implements hook_help().

File

./entity_usage.module, line 20
Contains entity_usage.module.

Code

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

    // Main module help for the entity_usage module.
    case 'help.page.entity_usage':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Track usage of entities referenced by other entities.') . '</p>';
      return $output;
    default:
  }
}