mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 17:36:38 +02:00
194 lines
7.6 KiB
PHP
194 lines
7.6 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 code for install
|
|
*
|
|
* @package mod_assign
|
|
* @copyright 2012 NetSpot {@link http://www.netspot.com.au}
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
/**
|
|
* upgrade this assignment instance - this function could be skipped but it will be needed later
|
|
* @param int $oldversion The old version of the assign module
|
|
* @return bool
|
|
*/
|
|
function xmldb_assign_upgrade($oldversion) {
|
|
global $CFG, $DB;
|
|
|
|
$dbman = $DB->get_manager();
|
|
|
|
if ($oldversion < 2012051700) {
|
|
|
|
// Define field to be added to assign.
|
|
$table = new xmldb_table('assign');
|
|
$field = new xmldb_field('sendlatenotifications', XMLDB_TYPE_INTEGER, '2', null, XMLDB_NOTNULL, null, '0', 'sendnotifications');
|
|
|
|
// Conditionally launch add field.
|
|
if (!$dbman->field_exists($table, $field)) {
|
|
$dbman->add_field($table, $field);
|
|
}
|
|
|
|
// Assign savepoint reached.
|
|
upgrade_mod_savepoint(true, 2012051700, 'assign');
|
|
}
|
|
|
|
// Moodle v2.3.0 release upgrade line.
|
|
// Put any upgrade step following this.
|
|
|
|
if ($oldversion < 2012071800) {
|
|
|
|
// Define field requiresubmissionstatement to be added to assign.
|
|
$table = new xmldb_table('assign');
|
|
$field = new xmldb_field('requiresubmissionstatement', XMLDB_TYPE_INTEGER, '2', null, XMLDB_NOTNULL, null, '0', 'timemodified');
|
|
|
|
// Conditionally launch add field requiresubmissionstatement.
|
|
|
|
if (!$dbman->field_exists($table, $field)) {
|
|
$dbman->add_field($table, $field);
|
|
}
|
|
|
|
// Assign savepoint reached.
|
|
upgrade_mod_savepoint(true, 2012071800, 'assign');
|
|
}
|
|
|
|
if ($oldversion < 2012081600) {
|
|
|
|
// Define field to be added to assign.
|
|
$table = new xmldb_table('assign');
|
|
$field = new xmldb_field('completionsubmit', XMLDB_TYPE_INTEGER, '2', null, XMLDB_NOTNULL, null, '0', 'timemodified');
|
|
|
|
// Conditionally launch add field.
|
|
if (!$dbman->field_exists($table, $field)) {
|
|
$dbman->add_field($table, $field);
|
|
}
|
|
|
|
// Assign savepoint reached.
|
|
upgrade_mod_savepoint(true, 2012081600, 'assign');
|
|
}
|
|
|
|
// Individual extension dates support.
|
|
if ($oldversion < 2012082100) {
|
|
|
|
// Define field cutoffdate to be added to assign.
|
|
$table = new xmldb_table('assign');
|
|
$field = new xmldb_field('cutoffdate', XMLDB_TYPE_INTEGER, '10', null,
|
|
XMLDB_NOTNULL, null, '0', 'completionsubmit');
|
|
|
|
// Conditionally launch add field cutoffdate.
|
|
if (!$dbman->field_exists($table, $field)) {
|
|
$dbman->add_field($table, $field);
|
|
}
|
|
// If prevent late is on - set cutoffdate to due date.
|
|
|
|
// Now remove the preventlatesubmissions column.
|
|
$field = new xmldb_field('preventlatesubmissions', XMLDB_TYPE_INTEGER, '2', null,
|
|
XMLDB_NOTNULL, null, '0', 'nosubmissions');
|
|
if ($dbman->field_exists($table, $field)) {
|
|
// Set the cutoffdate to the duedate if preventlatesubmissions was enabled.
|
|
$sql = 'UPDATE {assign} SET cutoffdate = duedate WHERE preventlatesubmissions = 1';
|
|
$DB->execute($sql);
|
|
|
|
$dbman->drop_field($table, $field);
|
|
}
|
|
|
|
// Define field extensionduedate to be added to assign_grades
|
|
$table = new xmldb_table('assign_grades');
|
|
$field = new xmldb_field('extensionduedate', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0', 'mailed');
|
|
|
|
// Conditionally launch add field extensionduedate
|
|
if (!$dbman->field_exists($table, $field)) {
|
|
$dbman->add_field($table, $field);
|
|
}
|
|
|
|
// Assign savepoint reached.
|
|
upgrade_mod_savepoint(true, 2012082100, 'assign');
|
|
}
|
|
|
|
// Team assignment support.
|
|
if ($oldversion < 2012082300) {
|
|
|
|
// Define field to be added to assign.
|
|
$table = new xmldb_table('assign');
|
|
$field = new xmldb_field('teamsubmission', XMLDB_TYPE_INTEGER, '2', XMLDB_UNSIGNED,
|
|
XMLDB_NOTNULL, null, '0', 'cutoffdate');
|
|
|
|
// Conditionally launch add field.
|
|
if (!$dbman->field_exists($table, $field)) {
|
|
$dbman->add_field($table, $field);
|
|
}
|
|
$field = new xmldb_field('requireallteammemberssubmit', XMLDB_TYPE_INTEGER, '2', XMLDB_UNSIGNED,
|
|
XMLDB_NOTNULL, null, '0', 'teamsubmission');
|
|
// Conditionally launch add field.
|
|
if (!$dbman->field_exists($table, $field)) {
|
|
$dbman->add_field($table, $field);
|
|
}
|
|
$field = new xmldb_field('teamsubmissiongroupingid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED,
|
|
XMLDB_NOTNULL, null, '0', 'requireallteammemberssubmit');
|
|
// Conditionally launch add field.
|
|
if (!$dbman->field_exists($table, $field)) {
|
|
$dbman->add_field($table, $field);
|
|
}
|
|
$index = new xmldb_index('teamsubmissiongroupingid', XMLDB_INDEX_NOTUNIQUE, array('teamsubmissiongroupingid'));
|
|
// Conditionally launch add index.
|
|
if (!$dbman->index_exists($table, $index)) {
|
|
$dbman->add_index($table, $index);
|
|
}
|
|
$table = new xmldb_table('assign_submission');
|
|
$field = new xmldb_field('groupid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', 'status');
|
|
// Conditionally launch add field.
|
|
if (!$dbman->field_exists($table, $field)) {
|
|
$dbman->add_field($table, $field);
|
|
}
|
|
upgrade_mod_savepoint(true, 2012082300, 'assign');
|
|
}
|
|
if ($oldversion < 2012082400) {
|
|
|
|
// Define field to be added to assign
|
|
$table = new xmldb_table('assign_user_mapping');
|
|
|
|
$table->add_field('id', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
|
|
$table->add_field('assignment', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, null);
|
|
$table->add_field('userid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, null);
|
|
|
|
$table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
|
|
$table->add_key('userid', XMLDB_KEY_FOREIGN, array('userid'), 'user', array('id'));
|
|
$table->add_key('assignment', XMLDB_KEY_FOREIGN, array('assignment'), 'assign', array('id'));
|
|
|
|
if (!$dbman->table_exists($table)) {
|
|
$dbman->create_table($table);
|
|
}
|
|
|
|
$table = new xmldb_table('assign');
|
|
$field = new xmldb_field('blindmarking', XMLDB_TYPE_INTEGER, '2', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', 'teamsubmissiongroupingid');
|
|
if (!$dbman->field_exists($table, $field)) {
|
|
$dbman->add_field($table, $field);
|
|
}
|
|
|
|
$table = new xmldb_table('assign');
|
|
$field = new xmldb_field('revealidentities', XMLDB_TYPE_INTEGER, '2', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', 'blindmarking');
|
|
if (!$dbman->field_exists($table, $field)) {
|
|
$dbman->add_field($table, $field);
|
|
}
|
|
upgrade_mod_savepoint(true, 2012082400, 'assign');
|
|
}
|
|
|
|
|
|
return true;
|
|
}
|
|
|
|
|