예제 #1
0
 protected function other_attempt_fields(MoodleQuickForm $mform)
 {
     parent::other_attempt_fields($mform);
     if (quiz_allows_multiple_tries($this->_customdata['quiz'])) {
         $mform->addElement('select', 'whichtries', get_string('whichtries', 'question'), array(question_attempt::FIRST_TRY => get_string('firsttry', 'question'), question_attempt::LAST_TRY => get_string('lasttry', 'question'), question_attempt::ALL_TRIES => get_string('alltries', 'question')));
         $mform->setDefault('whichtries', question_attempt::LAST_TRY);
     }
 }