You are here

function spaces_core_help in Spaces 5.2

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

Implementation of hook_help().

File

spaces_core/spaces_core.module, line 36

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>";
  }
}