function matching_help in Quiz 6.5
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.2 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()
 - 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
- question_types/
matching/ matching.module, line 23  - Matching question type for quiz module
 
Code
function matching_help($path, $args) {
  switch ($path) {
    case 'admin/modules#description':
      return t('Matching question type for quiz module.');
    case 'node/add#matching':
    case 'admin/help#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;
  }
}