You are here

function _quiz_get_feedback_options in Quiz 7

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.6 quiz.module \_quiz_get_feedback_options()
  4. 6.2 quiz.module \_quiz_get_feedback_options()
  5. 6.3 quiz.module \_quiz_get_feedback_options()
  6. 6.4 quiz.module \_quiz_get_feedback_options()
  7. 6.5 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.

1 call to _quiz_get_feedback_options()
quiz_form in ./quiz.module
Implements hook_form().

File

./quiz.module, line 3659
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'),
  );
}