mirror of
https://github.com/moodle/moodle.git
synced 2025-06-07 08:35:58 +02:00
198 lines
7.0 KiB
PHP
198 lines
7.0 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/>.
|
|
|
|
/**
|
|
* Upgrade script for the quiz module.
|
|
*
|
|
* @package mod_quiz
|
|
* @copyright 2006 Eloy Lafuente (stronk7)
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
/**
|
|
* Quiz module upgrade function.
|
|
* @param string $oldversion the version we are upgrading from.
|
|
*/
|
|
function xmldb_quiz_upgrade($oldversion) {
|
|
global $CFG, $DB;
|
|
|
|
$dbman = $DB->get_manager();
|
|
|
|
if ($oldversion < 2014052800) {
|
|
|
|
// Define field completionattemptsexhausted to be added to quiz.
|
|
$table = new xmldb_table('quiz');
|
|
$field = new xmldb_field('completionattemptsexhausted', XMLDB_TYPE_INTEGER, '1', null, null, null, '0', 'showblocks');
|
|
|
|
// Conditionally launch add field completionattemptsexhausted.
|
|
if (!$dbman->field_exists($table, $field)) {
|
|
$dbman->add_field($table, $field);
|
|
}
|
|
// Quiz savepoint reached.
|
|
upgrade_mod_savepoint(true, 2014052800, 'quiz');
|
|
}
|
|
|
|
if ($oldversion < 2014052801) {
|
|
// Define field completionpass to be added to quiz.
|
|
$table = new xmldb_table('quiz');
|
|
$field = new xmldb_field('completionpass', XMLDB_TYPE_INTEGER, '1', null, null, null, 0, 'completionattemptsexhausted');
|
|
|
|
// Conditionally launch add field completionpass.
|
|
if (!$dbman->field_exists($table, $field)) {
|
|
$dbman->add_field($table, $field);
|
|
}
|
|
|
|
// Quiz savepoint reached.
|
|
upgrade_mod_savepoint(true, 2014052801, 'quiz');
|
|
}
|
|
|
|
// Moodle v2.8.0 release upgrade line.
|
|
// Put any upgrade step following this.
|
|
|
|
if ($oldversion < 2015030500) {
|
|
// Define field requireprevious to be added to quiz_slots.
|
|
$table = new xmldb_table('quiz_slots');
|
|
$field = new xmldb_field('requireprevious', XMLDB_TYPE_INTEGER, '4', null, XMLDB_NOTNULL, null, 0, 'page');
|
|
|
|
// Conditionally launch add field page.
|
|
if (!$dbman->field_exists($table, $field)) {
|
|
$dbman->add_field($table, $field);
|
|
}
|
|
|
|
// Quiz savepoint reached.
|
|
upgrade_mod_savepoint(true, 2015030500, 'quiz');
|
|
}
|
|
|
|
if ($oldversion < 2015030900) {
|
|
// Define field canredoquestions to be added to quiz.
|
|
$table = new xmldb_table('quiz');
|
|
$field = new xmldb_field('canredoquestions', XMLDB_TYPE_INTEGER, '4', null, XMLDB_NOTNULL, null, 0, 'preferredbehaviour');
|
|
|
|
// Conditionally launch add field completionpass.
|
|
if (!$dbman->field_exists($table, $field)) {
|
|
$dbman->add_field($table, $field);
|
|
}
|
|
|
|
// Quiz savepoint reached.
|
|
upgrade_mod_savepoint(true, 2015030900, 'quiz');
|
|
}
|
|
|
|
if ($oldversion < 2015032300) {
|
|
|
|
// Define table quiz_sections to be created.
|
|
$table = new xmldb_table('quiz_sections');
|
|
|
|
// Adding fields to table quiz_sections.
|
|
$table->add_field('id', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
|
|
$table->add_field('quizid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, null);
|
|
$table->add_field('firstslot', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, null);
|
|
$table->add_field('heading', XMLDB_TYPE_CHAR, '1333', null, null, null, null);
|
|
$table->add_field('shufflequestions', XMLDB_TYPE_INTEGER, '4', null, XMLDB_NOTNULL, null, '0');
|
|
|
|
// Adding keys to table quiz_sections.
|
|
$table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
|
|
$table->add_key('quizid', XMLDB_KEY_FOREIGN, array('quizid'), 'quiz', array('id'));
|
|
|
|
// Adding indexes to table quiz_sections.
|
|
$table->add_index('quizid-firstslot', XMLDB_INDEX_UNIQUE, array('quizid', 'firstslot'));
|
|
|
|
// Conditionally launch create table for quiz_sections.
|
|
if (!$dbman->table_exists($table)) {
|
|
$dbman->create_table($table);
|
|
}
|
|
|
|
// Quiz savepoint reached.
|
|
upgrade_mod_savepoint(true, 2015032300, 'quiz');
|
|
}
|
|
|
|
if ($oldversion < 2015032301) {
|
|
|
|
// Create a section for each quiz.
|
|
$DB->execute("
|
|
INSERT INTO {quiz_sections}
|
|
(quizid, firstslot, heading, shufflequestions)
|
|
SELECT id, 1, ?, shufflequestions
|
|
FROM {quiz}
|
|
", array(''));
|
|
|
|
// Quiz savepoint reached.
|
|
upgrade_mod_savepoint(true, 2015032301, 'quiz');
|
|
}
|
|
|
|
if ($oldversion < 2015032302) {
|
|
|
|
// Define field shufflequestions to be dropped from quiz.
|
|
$table = new xmldb_table('quiz');
|
|
$field = new xmldb_field('shufflequestions');
|
|
|
|
// Conditionally launch drop field shufflequestions.
|
|
if ($dbman->field_exists($table, $field)) {
|
|
$dbman->drop_field($table, $field);
|
|
}
|
|
|
|
// Quiz savepoint reached.
|
|
upgrade_mod_savepoint(true, 2015032302, 'quiz');
|
|
}
|
|
|
|
if ($oldversion < 2015032303) {
|
|
|
|
// Drop corresponding admin settings.
|
|
unset_config('shufflequestions', 'quiz');
|
|
unset_config('shufflequestions_adv', 'quiz');
|
|
|
|
// Quiz savepoint reached.
|
|
upgrade_mod_savepoint(true, 2015032303, 'quiz');
|
|
}
|
|
|
|
// Moodle v2.9.0 release upgrade line.
|
|
// Put any upgrade step following this.
|
|
|
|
// Moodle v3.0.0 release upgrade line.
|
|
// Put any upgrade step following this.
|
|
|
|
if ($oldversion < 2016032600) {
|
|
// Update quiz_sections to repair quizzes what were broken by MDL-53507.
|
|
$problemquizzes = $DB->get_records_sql("
|
|
SELECT quizid, MIN(firstslot) AS firstsectionfirstslot
|
|
FROM {quiz_sections}
|
|
GROUP BY quizid
|
|
HAVING MIN(firstslot) > 1");
|
|
|
|
if ($problemquizzes) {
|
|
$pbar = new progress_bar('upgradequizfirstsection', 500, true);
|
|
$total = count($problemquizzes);
|
|
$done = 0;
|
|
foreach ($problemquizzes as $problemquiz) {
|
|
$DB->set_field('quiz_sections', 'firstslot', 1,
|
|
array('quizid' => $problemquiz->quizid,
|
|
'firstslot' => $problemquiz->firstsectionfirstslot));
|
|
$done += 1;
|
|
$pbar->update($done, $total, "Fixing quiz layouts - {$done}/{$total}.");
|
|
}
|
|
}
|
|
|
|
// Quiz savepoint reached.
|
|
upgrade_mod_savepoint(true, 2016032600, 'quiz');
|
|
}
|
|
|
|
// Moodle v3.1.0 release upgrade line.
|
|
// Put any upgrade step following this.
|
|
|
|
return true;
|
|
}
|