function workspace_help in Workspace 7
Same name and namespace in other branches
- 8.2 workspace.module \workspace_help()
- 8 workspace.module \workspace_help()
- 5 workspace.module \workspace_help()
- 6 workspace.module \workspace_help()
Implements hook_help().
File
- ./
workspace.module, line 25 - Presents a user-centric view of content.
Code
function workspace_help($path) {
switch ($path) {
case 'admin/help#workspace':
$output = '<p>' . t('The workspace module provides a list of content for each user.') . '</p>';
$output .= '<p>' . t("When enabled, each user will have a 'My workspace' link in the Navigation menu.") . '</p>';
return $output;
}
}