Dont show expected choice for hotspot question

pull/2487/head
Angel Fernando Quiroz Campos 9 years ago
parent 90dd379f41
commit 80b384d187
  1. 12
      main/exercise/hotspot_answers.as.php

@ -57,7 +57,17 @@ $data['image_height'] = $pictureHeight;
$data['courseCode'] = $_course['path'];
$data['hotspots'] = [];
if ($objExercise->results_disabled != RESULT_DISABLE_SHOW_SCORE_ONLY) {
error_log("\$objExercise->results_disabled: {$objExercise->results_disabled}");
$showScoreOptions = [
RESULT_DISABLE_SHOW_SCORE_ONLY,
RESULT_DISABLE_SHOW_FINAL_SCORE_ONLY_WITH_CATEGORIES,
RESULT_DISABLE_SHOW_SCORE_ATTEMPT_SHOW_ANSWERS_LAST_ATTEMPT
];
$showExpectedChoice = !in_array($objExercise->results_disabled, $showScoreOptions);
if ($showExpectedChoice) {
$qb = $em->createQueryBuilder();
$qb
->select('a')

Loading…
Cancel
Save