You are here

function matching_help in Quiz 8.4

Same name and namespace in other branches
  1. 8.6 question_types/quiz_matching/quiz_matching.module \matching_help()
  2. 8.5 question_types/quiz_matching/quiz_matching.module \matching_help()
  3. 5.2 matching.module \matching_help()
  4. 5 matching.module \matching_help()
  5. 6.6 question_types/matching/matching.module \matching_help()
  6. 6.2 matching.module \matching_help()
  7. 6.3 question_types/matching/matching.module \matching_help()
  8. 6.4 question_types/matching/matching.module \matching_help()
  9. 6.5 question_types/matching/matching.module \matching_help()
  10. 7.6 question_types/matching/matching.module \matching_help()
  11. 7 question_types/matching/matching.module \matching_help()
  12. 7.4 question_types/matching/matching.module \matching_help()
  13. 7.5 question_types/matching/matching.module \matching_help()
  14. 6.x question_types/quiz_matching/quiz_matching.module \matching_help()

Implements hook_help().

File

question_types/matching/matching.module, line 14
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;
  }
}