Don't show Hot Spot Delineation question type when Scenario is disabled

1.10.x
Angel Fernando Quiroz Campos 10 years ago
parent 9da2c409aa
commit d55a9e2782
  1. 4
      main/exercice/question.class.php

@ -1373,6 +1373,10 @@ abstract class Question
self::$questionTypes[ORAL_EXPRESSION] = null;
unset(self::$questionTypes[ORAL_EXPRESSION]);
}
if (api_get_setting('enable_quiz_scenario') !== 'true') {
self::$questionTypes[HOT_SPOT_DELINEATION];
unset(self::$questionTypes[HOT_SPOT_DELINEATION]);
}
return self::$questionTypes;
}

Loading…
Cancel
Save