You are here

function quiz_result_load in Quiz 7.5

Same name and namespace in other branches
  1. 7.6 quiz.module \quiz_result_load()

Shortcut to entity_load_single().

25 calls to quiz_result_load()
ajax_quiz_navigate_quiz in modules/ajax_quiz/ajax_quiz.module
AJAX callback for quiz submission.
QuizGradingTestCase::testManualWeightedScore in tests/QuizGradingTestCase.test
Test question weights.
QuizGradingTestCase::testWeightedScore in tests/QuizGradingTestCase.test
Test question weights.
QuizQuestionResponse::canReview in question_types/quiz_question/quiz_question.core.inc
Can the quiz taker view the requested review?
QuizQuestionResponse::getMaxScore in question_types/quiz_question/quiz_question.core.inc
Get the max score of this question response.

... See full list

File

./quiz.module, line 3515
quiz.module Main file for the Quiz module.

Code

function quiz_result_load($result_id) {
  return entity_load_single('quiz_result', $result_id);
}