You are here

function workspace_help in Workspace 6

Same name and namespace in other branches
  1. 8.2 workspace.module \workspace_help()
  2. 8 workspace.module \workspace_help()
  3. 5 workspace.module \workspace_help()
  4. 7 workspace.module \workspace_help()

Implementation of hook_help().

File

./workspace.module, line 20
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;
  }
}