function entity_hierarchy_help in Entity Reference Hierarchy 8.2
Same name and namespace in other branches
- 8 entity_hierarchy.module \entity_hierarchy_help()
- 3.x entity_hierarchy.module \entity_hierarchy_help()
Implements
See also
hook_help().
File
- ./
entity_hierarchy.module, line 26 - A module to make entities hierarchical.
Code
function entity_hierarchy_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.entity_hierarchy':
return t('A module to create hierarchical entities. To get started, add a field of type <em>Entity Reference Hierarchy</em> to your entity to keep track of parents.');
}
}