You are here

function long_answer_help in Quiz 8.4

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

Implements hook_help().

File

question_types/long_answer/long_answer.module, line 16
This module defines a long answer question type for quizzes.

Code

function long_answer_help($path, $arg) {
  if ($path == 'admin/help#long_answer') {
    return '<p>' . t('This module provides long-answer (essay, multi-paragraph) questions to the quiz module.') . '</p><p>' . t('A long-answer question is designed to provide the quiz taker a lengthy area to expand on ideas.
      Common forms of long-answer questions include essays, single paragraph responses, hypothesis design problems,
      outlines and summaries, and lengthier math problems
      where the focus is on showing work rather than simply getting the correct answer.') . '</p>';
  }
}