function answers_help in Answers 5.2
Same name and namespace in other branches
- 6.2 answers.module \answers_help()
- 6 answers.module \answers_help()
- 7 answers.module \answers_help()
- 7.2 answers.module \answers_help()
- 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.');
}
}