You are here

function short_answer_help in Quiz 6.6

Same name and namespace in other branches
  1. 8.6 question_types/quiz_short_answer/quiz_short_answer.module \short_answer_help()
  2. 8.4 question_types/short_answer/short_answer.module \short_answer_help()
  3. 8.5 question_types/quiz_short_answer/quiz_short_answer.module \short_answer_help()
  4. 6.3 question_types/short_answer/short_answer.module \short_answer_help()
  5. 6.4 question_types/short_answer/short_answer.module \short_answer_help()
  6. 6.5 question_types/short_answer/short_answer.module \short_answer_help()
  7. 7.6 question_types/short_answer/short_answer.module \short_answer_help()
  8. 7 question_types/short_answer/short_answer.module \short_answer_help()
  9. 7.4 question_types/short_answer/short_answer.module \short_answer_help()
  10. 7.5 question_types/short_answer/short_answer.module \short_answer_help()
  11. 6.x question_types/quiz_short_answer/quiz_short_answer.module \short_answer_help()

Implementation of hook_help().

File

question_types/short_answer/short_answer.module, line 15
The main file for short_answer.

Code

function short_answer_help($path, $args) {
  if ($path == 'admin/help#short_answer') {
    return t('This module provides a short answer question type for Quiz.');
  }
}