You are here

function og_vocab_help in OG Vocabulary 5

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

Implementation of hook_help().

File

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

Code

function og_vocab_help($section) {
  switch ($section) {
    case arg(2) == 'og' && arg(3) == 'vocab' && is_null(arg(4)):
      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.');
  }
}