function group_help in Group 2.0.x
Same name and namespace in other branches
- 8 group.module \group_help()
Implements hook_help().
File
- ./
group.module, line 30 - Allows you to group users, content and other entities.
Code
function group_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'entity.group_type.content_plugins':
return '<p>' . t('Entities that can be added to this group type.') . '</p>';
}
}