function multichoice_help in Quiz 6.5
Same name and namespace in other branches
- 8.4 question_types/multichoice/multichoice.module \multichoice_help()
- 6.6 question_types/multichoice/multichoice.module \multichoice_help()
- 6.3 question_types/multichoice/multichoice.module \multichoice_help()
- 6.4 question_types/multichoice/multichoice.module \multichoice_help()
- 7.6 question_types/multichoice/multichoice.module \multichoice_help()
- 7 question_types/multichoice/multichoice.module \multichoice_help()
- 7.4 question_types/multichoice/multichoice.module \multichoice_help()
- 7.5 question_types/multichoice/multichoice.module \multichoice_help()
Implementation of hook_help().
File
- question_types/
multichoice/ multichoice.module, line 15 - Multiple choice question type for the Quiz module.
Code
function multichoice_help($path, $a_really_important_array) {
if ($path == 'admin/help#multichoice') {
return '<p>' . t('The multichoice module provides a multiple-choice question type to the Quiz module.') . '</p><p>' . t('With this module, you can create new multiple choice and multiple answer questions that can
be added to a quiz.') . '</p>';
}
}