You are here

function short_answer_view_unscored in Quiz 6.5

Same name and namespace in other branches
  1. 8.4 question_types/short_answer/short_answer.admin.inc \short_answer_view_unscored()
  2. 6.6 question_types/short_answer/short_answer.admin.inc \short_answer_view_unscored()
  3. 6.3 question_types/short_answer/short_answer.admin.inc \short_answer_view_unscored()
  4. 6.4 question_types/short_answer/short_answer.admin.inc \short_answer_view_unscored()
  5. 7.6 question_types/short_answer/short_answer.admin.inc \short_answer_view_unscored()
  6. 7 question_types/short_answer/short_answer.admin.inc \short_answer_view_unscored()
  7. 7.4 question_types/short_answer/short_answer.admin.inc \short_answer_view_unscored()

Generate a view of all unscored answer questions.

See also

theme_short_answer_view_unscored()

1 string reference to 'short_answer_view_unscored'
short_answer_menu in question_types/short_answer/short_answer.module
Implementation of hook_menu().

File

question_types/short_answer/short_answer.admin.inc, line 13
short_answer.admin

Code

function short_answer_view_unscored() {
  $unscored = ShortAnswerResponse::fetchAllUnscoredAnswers();
  return theme('short_answer_view_unscored', $unscored);
}