You are here

function answers_help in Answers 5.2

Same name and namespace in other branches
  1. 6.2 answers.module \answers_help()
  2. 6 answers.module \answers_help()
  3. 7 answers.module \answers_help()
  4. 7.2 answers.module \answers_help()
  5. 7.3 answers.module \answers_help()

Implementation of hook_help().

File

./answers.module, line 16
Enables the creation of question nodes that can be answered by posting answer nodes.

Code

function answers_help($section) {
  switch ($section) {
    case 'admin/modules#description':
      return t('Enables the creation of question and answer service.');
    case 'node/add#quest':
      return t('This modules provides a way for users to post questions and get answers from other users.');
  }
}