function entity_hierarchy_help in Entity Reference Hierarchy 8
Same name and namespace in other branches
- 8.2 entity_hierarchy.module \entity_hierarchy_help()
- 3.x entity_hierarchy.module \entity_hierarchy_help()
Implements
See also
hook_help().
File
- ./
entity_hierarchy.module, line 22 - A module to make nodes hierarchical.
Code
function entity_hierarchy_help($route_name, RouteMatchInterface $route_match) {
// TODO: improve help text
switch ($route_name) {
case 'help.page.entity_hierarchy':
return t('A module to make nodes hierarchical.');
}
}