function group_help in Group 8
Same name and namespace in other branches
- 2.0.x group.module \group_help()
Implements hook_help().
File
- ./
group.module, line 31 - 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>';
}
}