You are here

function entity_hierarchy_help in Entity Reference Hierarchy 3.x

Same name and namespace in other branches
  1. 8.2 entity_hierarchy.module \entity_hierarchy_help()
  2. 8 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.');
  }
}