function entity_usage_help in Entity Usage 8.4
Same name and namespace in other branches
- 8 entity_usage.module \entity_usage_help()
- 8.2 entity_usage.module \entity_usage_help()
- 8.3 entity_usage.module \entity_usage_help()
Implements hook_help().
File
- ./
entity_usage.module, line 18 - 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:
}
}