You are here

function og_vocab_help in OG Vocabulary 6

Same name and namespace in other branches
  1. 5 og_vocab.module \og_vocab_help()

Implementation of hook_help().

File

./og_vocab.module, line 11
Give each group its own system controlled vocabularies.

Code

function og_vocab_help($path, $arg) {

  // Get the menu item to determine the context.
  $item = menu_get_item();
  if ($item['path'] == 'node/%/og/vocab') {
    return t('Add or edit vocabularies that pertain only to this group. Each vocabulary will be shown on the post authoring form. Use categories to organize content within your group.');
  }
}