mirror of
https://github.com/moodle/moodle.git
synced 2025-03-03 07:19:09 +01:00
The sections are created on the edit quiz page, and then appear in the navigation panel when the quiz is being attempted to help students find their way around. The 'Shuffle questions' setting has been moved from being per-quiz to being a per-section. This commit is actually the joint work of Mahmoud Kassaei and Tim Hunt from The Open University. We could only use one persons name for the commit and this time Mahmoud gets the credit/blame.
99 lines
3.8 KiB
PHP
99 lines
3.8 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
/**
|
|
* Quiz module test data generator class
|
|
*
|
|
* @package mod_quiz
|
|
* @copyright 2012 The Open University
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class mod_quiz_generator extends testing_module_generator {
|
|
|
|
public function create_instance($record = null, array $options = null) {
|
|
global $CFG;
|
|
|
|
require_once($CFG->dirroot.'/mod/quiz/locallib.php');
|
|
$record = (object)(array)$record;
|
|
|
|
$defaultquizsettings = array(
|
|
'timeopen' => 0,
|
|
'timeclose' => 0,
|
|
'preferredbehaviour' => 'deferredfeedback',
|
|
'attempts' => 0,
|
|
'attemptonlast' => 0,
|
|
'grademethod' => QUIZ_GRADEHIGHEST,
|
|
'decimalpoints' => 2,
|
|
'questiondecimalpoints' => -1,
|
|
'attemptduring' => 1,
|
|
'correctnessduring' => 1,
|
|
'marksduring' => 1,
|
|
'specificfeedbackduring' => 1,
|
|
'generalfeedbackduring' => 1,
|
|
'rightanswerduring' => 1,
|
|
'overallfeedbackduring' => 0,
|
|
'attemptimmediately' => 1,
|
|
'correctnessimmediately' => 1,
|
|
'marksimmediately' => 1,
|
|
'specificfeedbackimmediately' => 1,
|
|
'generalfeedbackimmediately' => 1,
|
|
'rightanswerimmediately' => 1,
|
|
'overallfeedbackimmediately' => 1,
|
|
'attemptopen' => 1,
|
|
'correctnessopen' => 1,
|
|
'marksopen' => 1,
|
|
'specificfeedbackopen' => 1,
|
|
'generalfeedbackopen' => 1,
|
|
'rightansweropen' => 1,
|
|
'overallfeedbackopen' => 1,
|
|
'attemptclosed' => 1,
|
|
'correctnessclosed' => 1,
|
|
'marksclosed' => 1,
|
|
'specificfeedbackclosed' => 1,
|
|
'generalfeedbackclosed' => 1,
|
|
'rightanswerclosed' => 1,
|
|
'overallfeedbackclosed' => 1,
|
|
'questionsperpage' => 1,
|
|
'shuffleanswers' => 1,
|
|
'sumgrades' => 0,
|
|
'grade' => 100,
|
|
'timecreated' => time(),
|
|
'timemodified' => time(),
|
|
'timelimit' => 0,
|
|
'overduehandling' => 'autoabandon',
|
|
'graceperiod' => 86400,
|
|
'quizpassword' => '',
|
|
'subnet' => '',
|
|
'browsersecurity' => '',
|
|
'delay1' => 0,
|
|
'delay2' => 0,
|
|
'showuserpicture' => 0,
|
|
'showblocks' => 0,
|
|
'navmethod' => QUIZ_NAVMETHOD_FREE,
|
|
);
|
|
|
|
foreach ($defaultquizsettings as $name => $value) {
|
|
if (!isset($record->{$name})) {
|
|
$record->{$name} = $value;
|
|
}
|
|
}
|
|
|
|
return parent::create_instance($record, (array)$options);
|
|
}
|
|
}
|