function theme_quiz_take_summary in Quiz 7
Same name and namespace in other branches
- 8.4 quiz.pages.inc \theme_quiz_take_summary()
- 5.2 quiz.module \theme_quiz_take_summary()
- 5 quiz.module \theme_quiz_take_summary()
- 6.6 quiz.pages.inc \theme_quiz_take_summary()
- 6.2 quiz.pages.inc \theme_quiz_take_summary()
- 6.3 quiz.pages.inc \theme_quiz_take_summary()
- 6.4 quiz.pages.inc \theme_quiz_take_summary()
- 6.5 quiz.pages.inc \theme_quiz_take_summary()
- 7.4 quiz.pages.inc \theme_quiz_take_summary()
Theme the summary page after the quiz has been completed.
Parameters
$quiz: The quiz node object.
$questions: The questions array as defined by _quiz_get_answers.
$score: Array of score information as returned by quiz_calculate_score().
$summary: Filtered text of the summary.
Return value
Themed html.
1 theme call to theme_quiz_take_summary()
- quiz_take_quiz in ./
quiz.module - Handles quiz taking.
File
- ./
quiz.pages.inc, line 513 - User pages.
Code
function theme_quiz_take_summary($variables) {
$quiz = $variables['quiz'];
$questions = $variables['questions'];
$score = $variables['score'];
$summary = $variables['summary'];
// Set the title here so themers can adjust.
drupal_set_title($quiz->title);
// Display overall result.
$output = '';
if (!empty($score['possible_score'])) {
if (!$score['is_evaluated']) {
$msg = t('Parts of this @quiz have not been evaluated yet. The score below is not final.', array(
'@quiz' => QUIZ_NAME,
));
drupal_set_message($msg, 'warning');
}
$output .= '<div id="quiz_score_possible">' . t('You got %num_correct of %question_count possible points.', array(
'%num_correct' => $score['numeric_score'],
'%question_count' => $score['possible_score'],
)) . '</div>' . "\n";
$output .= '<div id="quiz_score_percent">' . t('Your score: %score %', array(
'%score' => $score['percentage_score'],
)) . '</div>' . "\n";
}
if (isset($summary['passfail'])) {
$output .= '<div id="quiz_summary">' . $summary['passfail'] . '</div>' . "\n";
}
if (isset($summary['result'])) {
$output .= '<div id="quiz_summary">' . $summary['result'] . '</div>' . "\n";
}
// Get the feedback for all questions. These are included here to provide maximum flexibility for themers
if ($quiz->display_feedback) {
$output .= drupal_render(drupal_get_form('quiz_report_form', $questions));
}
return $output;
}