function matching_help in Quiz 5.2
Same name and namespace in other branches
- 8.6 question_types/quiz_matching/quiz_matching.module \matching_help()
- 8.4 question_types/matching/matching.module \matching_help()
- 8.5 question_types/quiz_matching/quiz_matching.module \matching_help()
- 5 matching.module \matching_help()
- 6.6 question_types/matching/matching.module \matching_help()
- 6.2 matching.module \matching_help()
- 6.3 question_types/matching/matching.module \matching_help()
- 6.4 question_types/matching/matching.module \matching_help()
- 6.5 question_types/matching/matching.module \matching_help()
- 7.6 question_types/matching/matching.module \matching_help()
- 7 question_types/matching/matching.module \matching_help()
- 7.4 question_types/matching/matching.module \matching_help()
- 7.5 question_types/matching/matching.module \matching_help()
- 6.x question_types/quiz_matching/quiz_matching.module \matching_help()
Implementation of hook_help().
File
- ./
matching.module, line 21 - Matching question type for quiz module
Code
function matching_help($section) {
switch ($section) {
case 'admin/modules#description':
return t('Matching question type for quiz module.');
case 'node/add#matching':
return t('A question type for the quiz module: allows you to create matching type questions, which connect terms with one another.');
default:
break;
}
}