You are here

function theme_short_answer_view_unscored in Quiz 6.5

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

Theme the list of unscored short answer questions.

Parameters

$unscored: An array of objects, each with the quist_nid, question_vid, and result_id of an unscored question.

1 theme call to theme_short_answer_view_unscored()
short_answer_view_unscored in question_types/short_answer/short_answer.admin.inc
Generate a view of all unscored answer questions.

File

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

Code

function theme_short_answer_view_unscored($unscored) {
  $output = '';
  $header = array(
    t('Quiz ID'),
    t('Question'),
    t('Time Finished'),
    t('Action'),
  );
  $rows = array();
  foreach ($unscored as $item) {
    if ($item->time_end > 0) {
      $rows[] = array(
        $item->result_id,
        $item->title,
        date('Y-m-d H:i', $item->time_end),
        l('score this response', 'admin/quiz/score-short-answer/' . $item->question_vid . '/' . $item->result_id),
      );
    }
  }
  if (!empty($rows)) {
    $output .= theme('table', $header, $rows);
  }
  else {
    $output .= t('There are no unscored essays.');
  }
  return $output;
}