You are here

function matching_help in Quiz 5.2

Same name and namespace in other branches
  1. 8.6 question_types/quiz_matching/quiz_matching.module \matching_help()
  2. 8.4 question_types/matching/matching.module \matching_help()
  3. 8.5 question_types/quiz_matching/quiz_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()

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;
  }
}