function answers_help in Answers 6
Same name and namespace in other branches
- 5.2 answers.module \answers_help()
- 6.2 answers.module \answers_help()
- 7 answers.module \answers_help()
- 7.2 answers.module \answers_help()
- 7.3 answers.module \answers_help()
Implement hook_help().
File
- ./
answers.module, line 10
Code
function answers_help($path, $arg) {
switch ($path) {
case "admin/help#modulename":
return '<p>' . t('Enables users to ask questions and for other users to answer them.') . '</p>';
}
}