Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

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

   1  <?php
   2  
   3  // This file is part of Moodle - http://moodle.org/
   4  //
   5  // Moodle is free software: you can redistribute it and/or modify
   6  // it under the terms of the GNU General Public License as published by
   7  // the Free Software Foundation, either version 3 of the License, or
   8  // (at your option) any later version.
   9  //
  10  // Moodle is distributed in the hope that it will be useful,
  11  // but WITHOUT ANY WARRANTY; without even the implied warranty of
  12  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13  // GNU General Public License for more details.
  14  //
  15  // You should have received a copy of the GNU General Public License
  16  // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
  17  
  18  /**
  19   * Numerical
  20   *
  21   * @package mod_lesson
  22   * @copyright  2009 Sam Hemelryk
  23   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  24   **/
  25  
  26  defined('MOODLE_INTERNAL') || die();
  27  
  28  /** Numerical question type */
  29  define("LESSON_PAGE_NUMERICAL",     "8");
  30  
  31  use mod_lesson\local\numeric\helper;
  32  
  33  class lesson_page_type_numerical extends lesson_page {
  34  
  35      protected $type = lesson_page::TYPE_QUESTION;
  36      protected $typeidstring = 'numerical';
  37      protected $typeid = LESSON_PAGE_NUMERICAL;
  38      protected $string = null;
  39  
  40      public function get_typeid() {
  41          return $this->typeid;
  42      }
  43      public function get_typestring() {
  44          if ($this->string===null) {
  45              $this->string = get_string($this->typeidstring, 'lesson');
  46          }
  47          return $this->string;
  48      }
  49      public function get_idstring() {
  50          return $this->typeidstring;
  51      }
  52      public function display($renderer, $attempt) {
  53          global $USER, $PAGE;
  54          $mform = new lesson_display_answer_form_numerical(new moodle_url('/mod/lesson/continue.php'),
  55              array('contents' => $this->get_contents(), 'lessonid' => $this->lesson->id));
  56          $data = new stdClass;
  57          $data->id = $PAGE->cm->id;
  58          $data->pageid = $this->properties->id;
  59          if (isset($USER->modattempts[$this->lesson->id])) {
  60              $data->answer = s($attempt->useranswer);
  61          }
  62          $mform->set_data($data);
  63  
  64          // Trigger an event question viewed.
  65          $eventparams = array(
  66              'context' => context_module::instance($PAGE->cm->id),
  67              'objectid' => $this->properties->id,
  68              'other' => array(
  69                      'pagetype' => $this->get_typestring()
  70                  )
  71              );
  72  
  73          $event = \mod_lesson\event\question_viewed::create($eventparams);
  74          $event->trigger();
  75          return $mform->display();
  76      }
  77  
  78      /**
  79       * Creates answers for this page type.
  80       *
  81       * @param  object $properties The answer properties.
  82       */
  83      public function create_answers($properties) {
  84          if (isset($properties->enableotheranswers) && $properties->enableotheranswers) {
  85              $properties->response_editor = array_values($properties->response_editor);
  86              $properties->jumpto = array_values($properties->jumpto);
  87              $properties->score = array_values($properties->score);
  88              $wrongresponse = end($properties->response_editor);
  89              $wrongkey = key($properties->response_editor);
  90              $properties->answer_editor[$wrongkey] = LESSON_OTHER_ANSWERS;
  91          }
  92          parent::create_answers($properties);
  93      }
  94  
  95      /**
  96       * Update the answers for this page type.
  97       *
  98       * @param  object $properties The answer properties.
  99       * @param  context $context The context for this module.
 100       * @param  int $maxbytes The maximum bytes for any uploades.
 101       */
 102      public function update($properties, $context = null, $maxbytes = null) {
 103          if ($properties->enableotheranswers) {
 104              $properties->response_editor = array_values($properties->response_editor);
 105              $properties->jumpto = array_values($properties->jumpto);
 106              $properties->score = array_values($properties->score);
 107              $wrongresponse = end($properties->response_editor);
 108              $wrongkey = key($properties->response_editor);
 109              $properties->answer_editor[$wrongkey] = LESSON_OTHER_ANSWERS;
 110          }
 111          parent::update($properties, $context, $maxbytes);
 112      }
 113  
 114      public function check_answer() {
 115          $result = parent::check_answer();
 116  
 117          $mform = new lesson_display_answer_form_numerical(new moodle_url('/mod/lesson/continue.php'),
 118              array('contents' => $this->get_contents()));
 119          $data = $mform->get_data();
 120          require_sesskey();
 121  
 122          $formattextdefoptions = new stdClass();
 123          $formattextdefoptions->noclean = true;
 124          $formattextdefoptions->para = false;
 125  
 126          // set defaults
 127          $result->response = '';
 128          $result->newpageid = 0;
 129  
 130          if (!isset($data->answer)) {
 131              $result->noanswer = true;
 132              return $result;
 133          } else {
 134              $result->useranswer = $data->answer;
 135          }
 136          $result->studentanswer = $result->userresponse = $result->useranswer;
 137          $answers = $this->get_answers();
 138          foreach ($answers as $answer) {
 139              $answer = parent::rewrite_answers_urls($answer);
 140              if (strpos($answer->answer, ':')) {
 141                  // there's a pairs of values
 142                  list($min, $max) = explode(':', $answer->answer);
 143                  $minimum = (float) $min;
 144                  $maximum = (float) $max;
 145              } else {
 146                  // there's only one value
 147                  $minimum = (float) $answer->answer;
 148                  $maximum = $minimum;
 149              }
 150              if (($result->useranswer >= $minimum) && ($result->useranswer <= $maximum)) {
 151                  $result->newpageid = $answer->jumpto;
 152                  $result->response = format_text($answer->response, $answer->responseformat, $formattextdefoptions);
 153                  if ($this->lesson->jumpto_is_correct($this->properties->id, $result->newpageid)) {
 154                      $result->correctanswer = true;
 155                  }
 156                  if ($this->lesson->custom) {
 157                      if ($answer->score > 0) {
 158                          $result->correctanswer = true;
 159                      } else {
 160                          $result->correctanswer = false;
 161                      }
 162                  }
 163                  $result->answerid = $answer->id;
 164                  return $result;
 165              }
 166          }
 167          // We could check here to see if we have a wrong answer jump to use.
 168          if ($result->answerid == 0) {
 169              // Use the all other answers jump details if it is set up.
 170              $lastanswer = end($answers);
 171              // Double check that this is the @#wronganswer#@ answer.
 172              if (strpos($lastanswer->answer, LESSON_OTHER_ANSWERS) !== false) {
 173                  $otheranswers = end($answers);
 174                  $result->newpageid = $otheranswers->jumpto;
 175                  $result->response = format_text($otheranswers->response, $otheranswers->responseformat, $formattextdefoptions);
 176                  // Does this also need to do the jumpto_is_correct?
 177                  if ($this->lesson->custom) {
 178                      $result->correctanswer = ($otheranswers->score > 0);
 179                  }
 180                  $result->answerid = $otheranswers->id;
 181              }
 182          }
 183          return $result;
 184      }
 185  
 186      public function display_answers(html_table $table) {
 187          $answers = $this->get_answers();
 188          $options = new stdClass;
 189          $options->noclean = true;
 190          $options->para = false;
 191          $i = 1;
 192          foreach ($answers as $answer) {
 193              $answer = parent::rewrite_answers_urls($answer, false);
 194              $cells = array();
 195              if ($this->lesson->custom && $answer->score > 0) {
 196                  // if the score is > 0, then it is correct
 197                  $cells[] = '<label class="correct">' . get_string('answer', 'lesson') . ' ' . $i . '</label>:';
 198              } else if ($this->lesson->custom) {
 199                  $cells[] = '<label>' . get_string('answer', 'lesson') . ' ' . $i . '</label>:';
 200              } else if ($this->lesson->jumpto_is_correct($this->properties->id, $answer->jumpto)) {
 201                  // underline correct answers
 202                  $cells[] = '<span class="correct">' . get_string('answer', 'lesson') . ' ' . $i . '</span>:' . "\n";
 203              } else {
 204                  $cells[] = '<label class="correct">' . get_string('answer', 'lesson') . ' ' . $i . '</label>:';
 205              }
 206              $formattedanswer = helper::lesson_format_numeric_value($answer->answer);
 207              $cells[] = format_text($formattedanswer, $answer->answerformat, $options);
 208              $table->data[] = new html_table_row($cells);
 209  
 210              $cells = array();
 211              $cells[] = '<label>' . get_string('response', 'lesson') . ' ' . $i . '</label>:';
 212              $cells[] = format_text($answer->response, $answer->responseformat, $options);
 213              $table->data[] = new html_table_row($cells);
 214  
 215              $cells = array();
 216              $cells[] = '<label>' . get_string('score', 'lesson') . '</label>:';
 217              $cells[] = $answer->score;
 218              $table->data[] = new html_table_row($cells);
 219  
 220              $cells = array();
 221              $cells[] = '<label>' . get_string('jump', 'lesson') . '</label>:';
 222              $cells[] = $this->get_jump_name($answer->jumpto);
 223              $table->data[] = new html_table_row($cells);
 224              if ($i === 1){
 225                  $table->data[count($table->data)-1]->cells[0]->style = 'width:20%;';
 226              }
 227              $i++;
 228          }
 229          return $table;
 230      }
 231      public function stats(array &$pagestats, $tries) {
 232          $temp = $this->lesson->get_last_attempt($tries);
 233          if (isset($pagestats[$temp->pageid][$temp->useranswer])) {
 234              $pagestats[$temp->pageid][$temp->useranswer]++;
 235          } else {
 236              $pagestats[$temp->pageid][$temp->useranswer] = 1;
 237          }
 238          if (isset($pagestats[$temp->pageid]["total"])) {
 239              $pagestats[$temp->pageid]["total"]++;
 240          } else {
 241              $pagestats[$temp->pageid]["total"] = 1;
 242          }
 243          return true;
 244      }
 245  
 246      public function report_answers($answerpage, $answerdata, $useranswer, $pagestats, &$i, &$n) {
 247          $answers = $this->get_answers();
 248          $formattextdefoptions = new stdClass;
 249          $formattextdefoptions->para = false;  //I'll use it widely in this page
 250          foreach ($answers as $answer) {
 251              if ($useranswer == null && $i == 0) {
 252                  // I have the $i == 0 because it is easier to blast through it all at once.
 253                  if (isset($pagestats[$this->properties->id])) {
 254                      $stats = $pagestats[$this->properties->id];
 255                      $total = $stats["total"];
 256                      unset($stats["total"]);
 257                      foreach ($stats as $valentered => $ntimes) {
 258                          $data = '<input class="form-control" type="text" size="50" ' .
 259                                  'disabled="disabled" readonly="readonly" value="'.
 260                                  s(format_float($valentered, strlen($valentered), true, true)).'" />';
 261                          $percent = $ntimes / $total * 100;
 262                          $percent = round($percent, 2);
 263                          $percent .= "% ".get_string("enteredthis", "lesson");
 264                          $answerdata->answers[] = array($data, $percent);
 265                      }
 266                  } else {
 267                      $answerdata->answers[] = array(get_string("nooneansweredthisquestion", "lesson"), " ");
 268                  }
 269                  $i++;
 270              } else if ($useranswer != null && ($answer->id == $useranswer->answerid || ($answer == end($answers) &&
 271                      empty($answerdata->answers)))) {
 272                  // Get in here when the user answered or for the last answer.
 273                  $data = '<input class="form-control" type="text" size="50" ' .
 274                          'disabled="disabled" readonly="readonly" value="'.
 275                          s(format_float($useranswer->useranswer, strlen($useranswer->useranswer), true, true)).'">';
 276                  if (isset($pagestats[$this->properties->id][$useranswer->useranswer])) {
 277                      $percent = $pagestats[$this->properties->id][$useranswer->useranswer] / $pagestats[$this->properties->id]["total"] * 100;
 278                      $percent = round($percent, 2);
 279                      $percent .= "% ".get_string("enteredthis", "lesson");
 280                  } else {
 281                      $percent = get_string("nooneenteredthis", "lesson");
 282                  }
 283                  $answerdata->answers[] = array($data, $percent);
 284  
 285                  if ($answer->id == $useranswer->answerid) {
 286                      if ($answer->response == null) {
 287                          if ($useranswer->correct) {
 288                              $answerdata->response = get_string("thatsthecorrectanswer", "lesson");
 289                          } else {
 290                              $answerdata->response = get_string("thatsthewronganswer", "lesson");
 291                          }
 292                      } else {
 293                          $answerdata->response = $answer->response;
 294                      }
 295                      if ($this->lesson->custom) {
 296                          $answerdata->score = get_string("pointsearned", "lesson").": ".$answer->score;
 297                      } elseif ($useranswer->correct) {
 298                          $answerdata->score = get_string("receivedcredit", "lesson");
 299                      } else {
 300                          $answerdata->score = get_string("didnotreceivecredit", "lesson");
 301                      }
 302                  } else {
 303                      $answerdata->response = get_string("thatsthewronganswer", "lesson");
 304                      if ($this->lesson->custom) {
 305                          $answerdata->score = get_string("pointsearned", "lesson").": 0";
 306                      } else {
 307                          $answerdata->score = get_string("didnotreceivecredit", "lesson");
 308                      }
 309                  }
 310              }
 311              $answerpage->answerdata = $answerdata;
 312          }
 313          return $answerpage;
 314      }
 315  
 316      /**
 317       * Make updates to the form data if required. In this case to put the all other answer data into the write section of the form.
 318       *
 319       * @param stdClass $data The form data to update.
 320       * @return stdClass The updated fom data.
 321       */
 322      public function update_form_data(stdClass $data) : stdClass {
 323          $answercount = count($this->get_answers());
 324  
 325          // If no answers provided, then we don't need to check anything.
 326          if (!$answercount) {
 327              return $data;
 328          }
 329  
 330          // Check for other answer entry.
 331          $lastanswer = $data->{'answer_editor[' . ($answercount - 1) . ']'};
 332          if (strpos($lastanswer, LESSON_OTHER_ANSWERS) !== false) {
 333              $data->{'answer_editor[' . ($this->lesson->maxanswers + 1) . ']'} =
 334                      $data->{'answer_editor[' . ($answercount - 1) . ']'};
 335              $data->{'response_editor[' . ($this->lesson->maxanswers + 1) . ']'} =
 336                      $data->{'response_editor[' . ($answercount - 1) . ']'};
 337              $data->{'jumpto[' . ($this->lesson->maxanswers + 1) . ']'} = $data->{'jumpto[' . ($answercount - 1) . ']'};
 338              $data->{'score[' . ($this->lesson->maxanswers + 1) . ']'} = $data->{'score[' . ($answercount - 1) . ']'};
 339              $data->enableotheranswers = true;
 340  
 341              // Unset the old values.
 342              unset($data->{'answer_editor[' . ($answercount - 1) . ']'});
 343              unset($data->{'response_editor[' . ($answercount - 1) . ']'});
 344              unset($data->{'jumpto['. ($answercount - 1) . ']'});
 345              unset($data->{'score[' . ($answercount - 1) . ']'});
 346          }
 347  
 348          return $data;
 349      }
 350  }
 351  
 352  class lesson_add_page_form_numerical extends lesson_add_page_form_base {
 353  
 354      public $qtype = 'numerical';
 355      public $qtypestring = 'numerical';
 356      protected $answerformat = '';
 357      protected $responseformat = LESSON_ANSWER_HTML;
 358  
 359      public function custom_definition() {
 360          $answercount = $this->_customdata['lesson']->maxanswers;
 361          for ($i = 0; $i < $answercount; $i++) {
 362              $this->_form->addElement('header', 'answertitle'.$i, get_string('answer').' '.($i+1));
 363              $this->add_answer($i, null, ($i < 1), '', [
 364                      'identifier' => 'numericanswer',
 365                      'component' => 'mod_lesson'
 366              ]);
 367              $this->add_response($i);
 368              $this->add_jumpto($i, null, ($i == 0 ? LESSON_NEXTPAGE : LESSON_THISPAGE));
 369              $this->add_score($i, null, ($i===0)?1:0);
 370          }
 371          // Wrong answer jump.
 372          $this->_form->addElement('header', 'wronganswer', get_string('allotheranswers', 'lesson'));
 373          $newcount = $answercount + 1;
 374          $this->_form->addElement('advcheckbox', 'enableotheranswers', get_string('enabled', 'lesson'));
 375          $this->add_response($newcount);
 376          $this->add_jumpto($newcount, get_string('allotheranswersjump', 'lesson'), LESSON_NEXTPAGE);
 377          $this->add_score($newcount, get_string('allotheranswersscore', 'lesson'), 0);
 378      }
 379  
 380      /**
 381       * We call get data when storing the data into the db. Override to format the floats properly
 382       *
 383       * @return object|void
 384       */
 385      public function get_data() : ?stdClass {
 386          $data = parent::get_data();
 387  
 388          if (!empty($data->answer_editor)) {
 389              foreach ($data->answer_editor as $key => $answer) {
 390                  $data->answer_editor[$key] = helper::lesson_unformat_numeric_value($answer);
 391              }
 392          }
 393  
 394          return $data;
 395      }
 396  
 397      /**
 398       * Return submitted data if properly submitted or returns NULL if validation fails or
 399       * if there is no submitted data with formatted numbers
 400       *
 401       * @return object submitted data; NULL if not valid or not submitted or cancelled
 402       */
 403      public function get_submitted_data() : ?stdClass {
 404          $data = parent::get_submitted_data();
 405  
 406          if (!empty($data->answer_editor)) {
 407              foreach ($data->answer_editor as $key => $answer) {
 408                  $data->answer_editor[$key] = helper::lesson_unformat_numeric_value($answer);
 409              }
 410          }
 411  
 412          return $data;
 413      }
 414  
 415      /**
 416       * Load in existing data as form defaults. Usually new entry defaults are stored directly in
 417       * form definition (new entry form); this function is used to load in data where values
 418       * already exist and data is being edited (edit entry form) after formatting numbers
 419       *
 420       *
 421       * @param stdClass|array $defaults object or array of default values
 422       */
 423      public function set_data($defaults) {
 424          if (is_object($defaults)) {
 425              $defaults = (array) $defaults;
 426          }
 427  
 428          $editor = 'answer_editor';
 429          foreach ($defaults as $key => $answer) {
 430              if (substr($key, 0, strlen($editor)) == $editor) {
 431                  $defaults[$key] = helper::lesson_format_numeric_value($answer);
 432              }
 433          }
 434  
 435          parent::set_data($defaults);
 436      }
 437  }
 438  
 439  class lesson_display_answer_form_numerical extends moodleform {
 440  
 441      public function definition() {
 442          global $USER, $OUTPUT;
 443          $mform = $this->_form;
 444          $contents = $this->_customdata['contents'];
 445  
 446          // Disable shortforms.
 447          $mform->setDisableShortforms();
 448  
 449          $mform->addElement('header', 'pageheader');
 450  
 451          $mform->addElement('html', $OUTPUT->container($contents, 'contents'));
 452  
 453          $hasattempt = false;
 454          $attrs = array('size'=>'50', 'maxlength'=>'200');
 455          if (isset($this->_customdata['lessonid'])) {
 456              $lessonid = $this->_customdata['lessonid'];
 457              if (isset($USER->modattempts[$lessonid]->useranswer)) {
 458                  $attrs['readonly'] = 'readonly';
 459                  $hasattempt = true;
 460              }
 461          }
 462          $options = new stdClass;
 463          $options->para = false;
 464          $options->noclean = true;
 465  
 466          $mform->addElement('hidden', 'id');
 467          $mform->setType('id', PARAM_INT);
 468  
 469          $mform->addElement('hidden', 'pageid');
 470          $mform->setType('pageid', PARAM_INT);
 471  
 472          $mform->addElement('float', 'answer', get_string('youranswer', 'lesson'), $attrs);
 473  
 474          if ($hasattempt) {
 475              $this->add_action_buttons(null, get_string("nextpage", "lesson"));
 476          } else {
 477              $this->add_action_buttons(null, get_string("submit", "lesson"));
 478          }
 479      }
 480  }