Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 4.1.x will end 13 November 2023 (12 months).
  • Bug fixes for security issues in 4.1.x will end 10 November 2025 (36 months).
  • PHP version: minimum PHP 7.4.0 Note: minimum PHP version has increased since Moodle 4.0. PHP 8.0.x is supported too.

Differences Between: [Versions 310 and 401] [Versions 311 and 401] [Versions 39 and 401] [Versions 401 and 402] [Versions 401 and 403]

   1  <?php
   2  // This file is part of Moodle - http://moodle.org/
   3  //
   4  // Moodle is free software: you can redistribute it and/or modify
   5  // it under the terms of the GNU General Public License as published by
   6  // the Free Software Foundation, either version 3 of the License, or
   7  // (at your option) any later version.
   8  //
   9  // Moodle is distributed in the hope that it will be useful,
  10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12  // GNU General Public License for more details.
  13  //
  14  // You should have received a copy of the GNU General Public License
  15  // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
  16  
  17  
  18  /**
  19   * Numerical question renderer class.
  20   *
  21   * @package qtype_numerical
  22   * @copyright 2009 The Open University
  23   * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  24   */
  25  
  26  
  27  /**
  28   * Generates the output for short answer questions.
  29   *
  30   * @copyright 2009 The Open University
  31   * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  32   */
  33  class qtype_numerical_renderer extends qtype_renderer {
  34      public function formulation_and_controls(question_attempt $qa,
  35              question_display_options $options) {
  36  
  37          $question = $qa->get_question();
  38          $currentanswer = $qa->get_last_qt_var('answer');
  39          if ($question->has_separate_unit_field()) {
  40              $selectedunit = $qa->get_last_qt_var('unit');
  41          } else {
  42              $selectedunit = null;
  43          }
  44  
  45          $inputname = $qa->get_qt_field_name('answer');
  46          $inputattributes = array(
  47              'type' => 'text',
  48              'name' => $inputname,
  49              'value' => $currentanswer,
  50              'id' => $inputname,
  51              'size' => 30,
  52              'class' => 'form-control d-inline',
  53          );
  54  
  55          if ($options->readonly) {
  56              $inputattributes['readonly'] = 'readonly';
  57          }
  58  
  59          $feedbackimg = '';
  60          if ($options->correctness) {
  61              list($value, $unit, $multiplier) = $question->ap->apply_units(
  62                      $currentanswer, $selectedunit);
  63              $answer = $question->get_matching_answer($value, $multiplier);
  64              if ($answer) {
  65                  $fraction = $question->apply_unit_penalty($answer->fraction, $answer->unitisright);
  66              } else {
  67                  $fraction = 0;
  68              }
  69              $inputattributes['class'] .= ' ' . $this->feedback_class($fraction);
  70              $feedbackimg = $this->feedback_image($fraction);
  71          }
  72  
  73          $questiontext = $question->format_questiontext($qa);
  74          $placeholder = false;
  75          if (preg_match('/_____+/', $questiontext, $matches)) {
  76              $placeholder = $matches[0];
  77              $inputattributes['size'] = round(strlen($placeholder) * 1.1);
  78          }
  79  
  80          $input = html_writer::empty_tag('input', $inputattributes) . $feedbackimg;
  81  
  82          if ($question->has_separate_unit_field()) {
  83              if ($question->unitdisplay == qtype_numerical::UNITRADIO) {
  84                  $choices = array();
  85                  $i = 1;
  86                  foreach ($question->ap->get_unit_options() as $unit) {
  87                      $id = $qa->get_qt_field_name('unit') . '_' . $i++;
  88                      $radioattrs = array('type' => 'radio', 'id' => $id, 'value' => $unit,
  89                              'name' => $qa->get_qt_field_name('unit'));
  90                      if ($unit == $selectedunit) {
  91                          $radioattrs['checked'] = 'checked';
  92                      }
  93                      $choices[] = html_writer::tag('label',
  94                              html_writer::empty_tag('input', $radioattrs) . $unit,
  95                              array('for' => $id, 'class' => 'unitchoice'));
  96                  }
  97  
  98                  $unitchoice = html_writer::tag('span', implode(' ', $choices),
  99                          array('class' => 'unitchoices'));
 100  
 101              } else if ($question->unitdisplay == qtype_numerical::UNITSELECT) {
 102                  $unitchoice = html_writer::label(get_string('selectunit', 'qtype_numerical'),
 103                          'menu' . $qa->get_qt_field_name('unit'), false, array('class' => 'accesshide'));
 104                  $unitchoice .= html_writer::select($question->ap->get_unit_options(),
 105                          $qa->get_qt_field_name('unit'), $selectedunit, array(''=>'choosedots'),
 106                          array('disabled' => $options->readonly));
 107              }
 108  
 109              if ($question->ap->are_units_before()) {
 110                  $input = $unitchoice . ' ' . $input;
 111              } else {
 112                  $input = $input . ' ' . $unitchoice;
 113              }
 114          }
 115  
 116          if ($placeholder) {
 117              $inputinplace = html_writer::tag('label', $options->add_question_identifier_to_label(get_string('answer')),
 118                      array('for' => $inputattributes['id'], 'class' => 'sr-only'));
 119              $inputinplace .= $input;
 120              $questiontext = substr_replace($questiontext, $inputinplace,
 121                      strpos($questiontext, $placeholder), strlen($placeholder));
 122          }
 123  
 124          $result = html_writer::tag('div', $questiontext, array('class' => 'qtext'));
 125  
 126          if (!$placeholder) {
 127              $result .= html_writer::start_tag('div', array('class' => 'ablock form-inline'));
 128              $label = $options->add_question_identifier_to_label(get_string('answercolon', 'qtype_numerical'), true);
 129              $result .= html_writer::tag('label', $label,
 130                  array('for' => $inputattributes['id']));
 131              $result .= html_writer::tag('span', $input, array('class' => 'answer'));
 132              $result .= html_writer::end_tag('div');
 133          }
 134  
 135          if ($qa->get_state() == question_state::$invalid) {
 136              $result .= html_writer::nonempty_tag('div',
 137                      $question->get_validation_error(array('answer' => $currentanswer, 'unit' => $selectedunit)),
 138                      array('class' => 'validationerror'));
 139          }
 140  
 141          return $result;
 142      }
 143  
 144      public function specific_feedback(question_attempt $qa) {
 145          $question = $qa->get_question();
 146  
 147          if ($question->has_separate_unit_field()) {
 148              $selectedunit = $qa->get_last_qt_var('unit');
 149          } else {
 150              $selectedunit = null;
 151          }
 152          list($value, $unit, $multiplier) = $question->ap->apply_units(
 153                  $qa->get_last_qt_var('answer'), $selectedunit);
 154          $answer = $question->get_matching_answer($value, $multiplier);
 155  
 156          if ($answer && $answer->feedback) {
 157              $feedback = $question->format_text($answer->feedback, $answer->feedbackformat,
 158                      $qa, 'question', 'answerfeedback', $answer->id);
 159          } else {
 160              $feedback = '';
 161          }
 162  
 163          if ($question->unitgradingtype && !$question->ap->is_known_unit($unit)) {
 164              $feedback .= html_writer::tag('p', get_string('unitincorrect', 'qtype_numerical'));
 165          }
 166  
 167          return $feedback;
 168      }
 169  
 170      public function correct_response(question_attempt $qa) {
 171          $question = $qa->get_question();
 172          $answer = $question->get_correct_answer();
 173          if (!$answer) {
 174              return '';
 175          }
 176  
 177          $response = str_replace('.', $question->ap->get_point(), $answer->answer);
 178          if ($question->unitdisplay != qtype_numerical::UNITNONE) {
 179              $response = $question->ap->add_unit($response);
 180          }
 181  
 182          return get_string('correctansweris', 'qtype_shortanswer', $response);
 183      }
 184  }