function spaces_dashboard_help in Spaces 5.2
Same name and namespace in other branches
- 5 spaces_dashboard/spaces_dashboard.module \spaces_dashboard_help()
Implementation of hook_help()
File
- spaces_dashboard/
spaces_dashboard.module, line 33
Code
function spaces_dashboard_help($page) {
switch ($page) {
case 'group_dashboard':
case 'group_dashboard/dashboard':
return "<p>" . t('The group dashboard shows you the latest content across all of your groups. You can limit the listing by using the dropdown filter.') . "</p>";
case 'group_dashboard/group_directory':
return "<p>" . t('The directory lists all groups you have access to. You may join groups that interest you if they allow others to join or request membership.') . "</p>";
case 'group_dashboard/team':
return "<p>" . t('You can manage user accounts and group membership from this page. Select multiple users to add or remove them from a group.') . "</p>";
break;
}
}