You are here

function spaces_core_help in Spaces 6

Same name and namespace in other branches
  1. 5.2 spaces_core/spaces_core.module \spaces_core_help()
  2. 5 spaces_core/spaces_core.module \spaces_core_help()

Implementation of hook_help().

File

spaces_core/spaces_core.module, line 42

Code

function spaces_core_help($page) {
  switch (context_get('spaces', 'feature')) {
    case 'blog':
      return "<p>" . t('The blog is a team discussion place where you can post and discuss information relevant to your team.') . "</p>";
    case 'book':
      return "<p>" . t('The book provides a place for you to post documents and other reference material.') . "</p>";
  }
}