Пример #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);
     }
 }
Пример #2
0
 protected function definition()
 {
     $mform = $this->_form;
     $mform->addElement('header', 'preferencespage', get_string('reportsettings', 'quiz_statistics'));
     $options = array();
     foreach (array_keys(quiz_get_grading_options()) as $which) {
         $options[$which] = \quiz_statistics\calculator::using_attempts_lang_string($which);
     }
     $mform->addElement('select', 'whichattempts', get_string('calculatefrom', 'quiz_statistics'), $options);
     if (quiz_allows_multiple_tries($this->_customdata['quiz'])) {
         $mform->addElement('select', 'whichtries', get_string('whichtries', 'quiz_statistics'), 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);
     }
     $mform->addElement('submit', 'submitbutton', get_string('preferencessave', 'quiz_overview'));
 }
Пример #3
0
 public function update_user_preferences()
 {
     parent::update_user_preferences();
     set_user_preference('quiz_report_responses_qtext', $this->showqtext);
     set_user_preference('quiz_report_responses_resp', $this->showresponses);
     set_user_preference('quiz_report_responses_right', $this->showright);
     if (quiz_allows_multiple_tries($this->quiz)) {
         set_user_preference('quiz_report_responses_which_tries', $this->whichtries);
     }
 }