You are here

function workspace_help in Workspace 5

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

Implementation of hook_help().

File

./workspace.module, line 11
Presents a user-centric view of content.

Code

function workspace_help($section) {
  switch ($section) {
    case 'admin/modules#description':
      return t('For individual users to manage their workspace');
  }
}