You are here

function _quiz_get_feedback_options in Quiz 6.6

Same name and namespace in other branches
  1. 8.4 quiz.module \_quiz_get_feedback_options()
  2. 5.2 quiz.module \_quiz_get_feedback_options()
  3. 6.2 quiz.module \_quiz_get_feedback_options()
  4. 6.3 quiz.module \_quiz_get_feedback_options()
  5. 6.4 quiz.module \_quiz_get_feedback_options()
  6. 6.5 quiz.module \_quiz_get_feedback_options()
  7. 7 quiz.module \_quiz_get_feedback_options()
  8. 7.4 quiz.module \_quiz_get_feedback_options()

Get an array of feedback options.

Return value

An array of feedback options.

2 calls to _quiz_get_feedback_options()
quiz_form in ./quiz.module
Implementation of hook_form().
theme_quiz_view in ./quiz.pages.inc
Theme the node view for quizzes.

File

./quiz.module, line 2660
Quiz Module

Code

function _quiz_get_feedback_options() {
  return array(
    QUIZ_FEEDBACK_END => t('At the end of the @quiz', array(
      '@quiz' => QUIZ_NAME,
    )),
    QUIZ_FEEDBACK_QUESTION => t('After each question'),
    QUIZ_FEEDBACK_NEVER => t('Do not show'),
  );
}