function simpleanswer_help in Answers 5.2
Implementation of hook_help().
File
- simpleanswer/
simpleanswer.module, line 16 - Adds a simple form to post a response/answer to questions using the answers module. This module does not display its content directly and requires the answers module to show its content.
Code
function simpleanswer_help($section) {
switch ($section) {
case 'admin/modules#description':
return t('Enables the creation of responses.');
case 'node/add#simpleanswer':
return t('If you want to add a simple response to questions posted using answers module, use this module.');
}
}