3 // This file is part of Moodle - http://moodle.org/
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.
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.
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/>.
19 * This file keeps track of upgrades to Moodle.
21 * Sometimes, changes between versions involve
22 * alterations to database structures and other
23 * major things that may break installations.
25 * The upgrade function in this file will attempt
26 * to perform all the necessary actions to upgrade
27 * your older installation to the current version.
29 * If there's something it cannot do itself, it
30 * will tell you what you need to do.
32 * The commands in here will all be database-neutral,
33 * using the methods of database_manager class
35 * Please do not forget to use upgrade_set_timeout()
36 * before any action that may take longer time to finish.
40 * @copyright 2006 onwards Martin Dougiamas http://dougiamas.com
41 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
44 defined('MOODLE_INTERNAL') || die();
48 * @global stdClass $CFG
49 * @global stdClass $USER
50 * @global moodle_database $DB
51 * @global core_renderer $OUTPUT
52 * @param int $oldversion
53 * @return bool always true
55 function xmldb_main_upgrade($oldversion) {
56 global $CFG, $USER, $DB, $OUTPUT;
58 require_once($CFG->libdir.'/db/upgradelib.php'); // Core Upgrade-related functions
60 $dbman = $DB->get_manager(); // loads ddl manager and xmldb classes
62 ////////////////////////////////////////
63 ///upgrade supported only from 1.9.x ///
64 ////////////////////////////////////////
66 if ($oldversion < 2008030600) {
67 //NOTE: this table was added much later later in dev cycle, but we need it here, upgrades from pre PR1 not supported
69 /// Define table upgrade_log to be created
70 $table = new xmldb_table('upgrade_log');
72 /// Adding fields to table upgrade_log
73 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
74 $table->add_field('type', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, null);
75 $table->add_field('plugin', XMLDB_TYPE_CHAR, '100', null, null, null, null);
76 $table->add_field('version', XMLDB_TYPE_CHAR, '100', null, null, null, null);
77 $table->add_field('targetversion', XMLDB_TYPE_CHAR, '100', null, null, null, null);
78 $table->add_field('info', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
79 $table->add_field('details', XMLDB_TYPE_TEXT, 'small', null, null, null, null);
80 $table->add_field('backtrace', XMLDB_TYPE_TEXT, 'small', null, null, null, null);
81 $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
82 $table->add_field('timemodified', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
84 /// Adding keys to table upgrade_log
85 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
86 $table->add_key('userid', XMLDB_KEY_FOREIGN, array('userid'), 'user', array('id'));
88 /// Adding indexes to table upgrade_log
89 $table->add_index('timemodified', XMLDB_INDEX_NOTUNIQUE, array('timemodified'));
90 $table->add_index('type-timemodified', XMLDB_INDEX_NOTUNIQUE, array('type', 'timemodified'));
92 /// Create table for upgrade_log
93 $dbman->create_table($table);
95 /// Main savepoint reached
96 upgrade_main_savepoint(true, 2008030600);
99 if ($oldversion < 2008030601) {
100 //NOTE: this table was added much later later in dev cycle, but we need it here, upgrades from pre PR1 not supported
102 /// Define table log_queries to be created
103 $table = new xmldb_table('log_queries');
105 /// Adding fields to table log_queries
106 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
107 $table->add_field('qtype', XMLDB_TYPE_INTEGER, '5', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
108 $table->add_field('sqltext', XMLDB_TYPE_TEXT, 'medium', null, XMLDB_NOTNULL, null, null);
109 $table->add_field('sqlparams', XMLDB_TYPE_TEXT, 'big', null, null, null, null);
110 $table->add_field('error', XMLDB_TYPE_INTEGER, '5', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
111 $table->add_field('info', XMLDB_TYPE_TEXT, 'small', null, null, null, null);
112 $table->add_field('backtrace', XMLDB_TYPE_TEXT, 'small', null, null, null, null);
113 $table->add_field('exectime', XMLDB_TYPE_NUMBER, '10, 5', null, XMLDB_NOTNULL, null, null);
114 $table->add_field('timelogged', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
116 /// Adding keys to table log_queries
117 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
119 /// Conditionally launch create table for log_queries
120 $dbman->create_table($table);
122 /// Main savepoint reached
123 upgrade_main_savepoint(true, 2008030601);
126 if ($oldversion < 2008030602) {
127 @unlink($CFG->dataroot.'/cache/languages');
129 if (file_exists("$CFG->dataroot/lang")) {
130 // rename old lang directory so that the new and old langs do not mix
131 if (rename("$CFG->dataroot/lang", "$CFG->dataroot/oldlang")) {
132 $oldlang = "$CFG->dataroot/oldlang";
134 $oldlang = "$CFG->dataroot/lang";
139 // TODO: fetch previously installed languages ("*_utf8") found in $oldlang from moodle.org
140 upgrade_set_timeout(60*20); // this may take a while
143 // TODO: add some info file to $oldlang describing what to do with "$oldlang/*_utf8_local" dirs
146 // Main savepoint reached
147 upgrade_main_savepoint(true, 2008030602);
150 if ($oldversion < 2008030700) {
151 upgrade_set_timeout(60*20); // this may take a while
153 /// Define index contextid-lowerboundary (not unique) to be dropped form grade_letters
154 $table = new xmldb_table('grade_letters');
155 $index = new xmldb_index('contextid-lowerboundary', XMLDB_INDEX_NOTUNIQUE, array('contextid', 'lowerboundary'));
157 /// Launch drop index contextid-lowerboundary
158 if ($dbman->index_exists($table, $index)) {
159 $dbman->drop_index($table, $index);
162 /// Define index contextid-lowerboundary-letter (unique) to be added to grade_letters
163 $table = new xmldb_table('grade_letters');
164 $index = new xmldb_index('contextid-lowerboundary-letter', XMLDB_INDEX_UNIQUE, array('contextid', 'lowerboundary', 'letter'));
166 /// Launch add index contextid-lowerboundary-letter
167 $dbman->add_index($table, $index);
169 /// Main savepoint reached
170 upgrade_main_savepoint(true, 2008030700);
173 if ($oldversion < 2008050100) {
174 // Update courses that used weekscss to weeks
175 $DB->set_field('course', 'format', 'weeks', array('format' => 'weekscss'));
176 upgrade_main_savepoint(true, 2008050100);
179 if ($oldversion < 2008050200) {
180 // remove unused config options
181 unset_config('statsrolesupgraded');
182 upgrade_main_savepoint(true, 2008050200);
185 if ($oldversion < 2008050700) {
186 upgrade_set_timeout(60*20); // this may take a while
188 /// Fix minor problem caused by MDL-5482.
189 require_once($CFG->dirroot . '/question/upgrade.php');
190 question_fix_random_question_parents();
191 upgrade_main_savepoint(true, 2008050700);
194 if ($oldversion < 2008051201) {
195 echo $OUTPUT->notification('Increasing size of user idnumber field, this may take a while...', 'notifysuccess');
196 upgrade_set_timeout(60*20); // this may take a while
198 /// Under MySQL and Postgres... detect old NULL contents and change them by correct empty string. MDL-14859
199 $dbfamily = $DB->get_dbfamily();
200 if ($dbfamily === 'mysql' || $dbfamily === 'postgres') {
201 $DB->execute("UPDATE {user} SET idnumber = '' WHERE idnumber IS NULL");
204 /// Define index idnumber (not unique) to be dropped form user
205 $table = new xmldb_table('user');
206 $index = new xmldb_index('idnumber', XMLDB_INDEX_NOTUNIQUE, array('idnumber'));
208 /// Launch drop index idnumber
209 if ($dbman->index_exists($table, $index)) {
210 $dbman->drop_index($table, $index);
213 /// Changing precision of field idnumber on table user to (255)
214 $table = new xmldb_table('user');
215 $field = new xmldb_field('idnumber', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null, 'password');
217 /// Launch change of precision for field idnumber
218 $dbman->change_field_precision($table, $field);
220 /// Launch add index idnumber again
221 $index = new xmldb_index('idnumber', XMLDB_INDEX_NOTUNIQUE, array('idnumber'));
222 $dbman->add_index($table, $index);
224 /// Main savepoint reached
225 upgrade_main_savepoint(true, 2008051201);
228 if ($oldversion < 2008051203) {
229 $table = new xmldb_table('mnet_enrol_course');
230 $field = new xmldb_field('sortorder', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, 0);
231 $dbman->change_field_precision($table, $field);
232 upgrade_main_savepoint(true, 2008051203);
235 if ($oldversion < 2008063001) {
236 upgrade_set_timeout(60*20); // this may take a while
238 // table to be modified
239 $table = new xmldb_table('tag_instance');
241 $field = new xmldb_field('tiuserid');
242 if (!$dbman->field_exists($table, $field)) {
243 $field->set_attributes(XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, 0, 'itemid');
244 $dbman->add_field($table, $field);
247 $index = new xmldb_index('itemtype-itemid-tagid');
248 $index->set_attributes(XMLDB_INDEX_UNIQUE, array('itemtype', 'itemid', 'tagid'));
249 if ($dbman->index_exists($table, $index)) {
250 $dbman->drop_index($table, $index);
252 $index = new xmldb_index('itemtype-itemid-tagid-tiuserid');
253 $index->set_attributes(XMLDB_INDEX_UNIQUE, array('itemtype', 'itemid', 'tagid', 'tiuserid'));
254 if (!$dbman->index_exists($table, $index)) {
255 $dbman->add_index($table, $index);
258 /// Main savepoint reached
259 upgrade_main_savepoint(true, 2008063001);
262 if ($oldversion < 2008070300) {
263 $DB->delete_records_select('role_names', $DB->sql_isempty('role_names', 'name', false, false));
264 upgrade_main_savepoint(true, 2008070300);
267 if ($oldversion < 2008070701) {
269 /// Define table portfolio_instance to be created
270 $table = new xmldb_table('portfolio_instance');
272 /// Adding fields to table portfolio_instance
273 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
274 $table->add_field('plugin', XMLDB_TYPE_CHAR, '50', null, XMLDB_NOTNULL, null, null);
275 $table->add_field('name', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
276 $table->add_field('visible', XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '1');
278 /// Adding keys to table portfolio_instance
279 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
281 /// Conditionally launch create table for portfolio_instance
282 if (!$dbman->table_exists($table)) {
283 $dbman->create_table($table);
285 /// Define table portfolio_instance_config to be created
286 $table = new xmldb_table('portfolio_instance_config');
288 /// Adding fields to table portfolio_instance_config
289 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
290 $table->add_field('instance', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
291 $table->add_field('name', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
292 $table->add_field('value', XMLDB_TYPE_TEXT, 'big', null, null, null, null);
294 /// Adding keys to table portfolio_instance_config
295 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
296 $table->add_key('instance', XMLDB_KEY_FOREIGN, array('instance'), 'portfolio_instance', array('id'));
298 /// Adding indexes to table portfolio_instance_config
299 $table->add_index('name', XMLDB_INDEX_NOTUNIQUE, array('name'));
301 /// Conditionally launch create table for portfolio_instance_config
302 if (!$dbman->table_exists($table)) {
303 $dbman->create_table($table);
306 /// Define table portfolio_instance_user to be created
307 $table = new xmldb_table('portfolio_instance_user');
309 /// Adding fields to table portfolio_instance_user
310 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null, null);
311 $table->add_field('instance', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
312 $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
313 $table->add_field('name', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
314 $table->add_field('value', XMLDB_TYPE_TEXT, 'big', null, null, null, null);
316 /// Adding keys to table portfolio_instance_user
317 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
318 $table->add_key('instancefk', XMLDB_KEY_FOREIGN, array('instance'), 'portfolio_instance', array('id'));
319 $table->add_key('userfk', XMLDB_KEY_FOREIGN, array('userid'), 'user', array('id'));
321 /// Conditionally launch create table for portfolio_instance_user
322 if (!$dbman->table_exists($table)) {
323 $dbman->create_table($table);
326 /// Main savepoint reached
327 upgrade_main_savepoint(true, 2008070701);
330 if ($oldversion < 2008072400) {
331 /// Create the database tables for message_processors
332 $table = new xmldb_table('message_processors');
333 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
334 $table->add_field('name', XMLDB_TYPE_CHAR, '166', null, XMLDB_NOTNULL, null, null);
335 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
336 $dbman->create_table($table);
338 /// delete old and create new fields
339 $table = new xmldb_table('message');
340 $field = new xmldb_field('messagetype');
341 $dbman->drop_field($table, $field);
344 $field = new xmldb_field('message');
345 $field->set_attributes(XMLDB_TYPE_TEXT, 'small', null, null, null, null, null);
346 $dbman->rename_field($table, $field, 'fullmessage');
347 $field = new xmldb_field('format');
348 $field->set_attributes(XMLDB_TYPE_INTEGER, '4', XMLDB_UNSIGNED, null, null, '0', null);
349 $dbman->rename_field($table, $field, 'fullmessageformat');
351 /// new message fields
352 $field = new xmldb_field('subject');
353 $field->set_attributes(XMLDB_TYPE_TEXT, 'small', null, null, null, null, null);
354 $dbman->add_field($table, $field);
355 $field = new xmldb_field('fullmessagehtml');
356 $field->set_attributes(XMLDB_TYPE_TEXT, 'medium', null, null, null, null, null);
357 $dbman->add_field($table, $field);
358 $field = new xmldb_field('smallmessage');
359 $field->set_attributes(XMLDB_TYPE_TEXT, 'small', null, null, null, null, null);
360 $dbman->add_field($table, $field);
363 $table = new xmldb_table('message_read');
364 $field = new xmldb_field('messagetype');
365 $dbman->drop_field($table, $field);
366 $field = new xmldb_field('mailed');
367 $dbman->drop_field($table, $field);
370 $field = new xmldb_field('message');
371 $field->set_attributes(XMLDB_TYPE_TEXT, 'small', null, null, null, null, null);
372 $dbman->rename_field($table, $field, 'fullmessage');
373 $field = new xmldb_field('format');
374 $field->set_attributes(XMLDB_TYPE_INTEGER, '4', XMLDB_UNSIGNED, null, null, '0', null);
375 $dbman->rename_field($table, $field, 'fullmessageformat');
378 /// new message fields
379 $field = new xmldb_field('subject');
380 $field->set_attributes(XMLDB_TYPE_TEXT, 'small', null, null, null, null, null);
381 $dbman->add_field($table, $field);
382 $field = new xmldb_field('fullmessagehtml');
383 $field->set_attributes(XMLDB_TYPE_TEXT, 'medium', null, null, null, null, null);
384 $dbman->add_field($table, $field);
385 $field = new xmldb_field('smallmessage');
386 $field->set_attributes(XMLDB_TYPE_TEXT, 'small', null, null, null, null, null);
387 $dbman->add_field($table, $field);
390 $table = new xmldb_table('message_working');
391 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
392 $table->add_field('unreadmessageid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
393 $table->add_field('processorid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
394 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
395 $dbman->create_table($table);
398 upgrade_main_savepoint(true, 2008072400);
401 if ($oldversion < 2008072800) {
403 /// Define field enablecompletion to be added to course
404 $table = new xmldb_table('course');
405 $field = new xmldb_field('enablecompletion');
406 $field->set_attributes(XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', 'defaultrole');
408 /// Launch add field enablecompletion
409 if (!$dbman->field_exists($table,$field)) {
410 $dbman->add_field($table, $field);
413 /// Define field completion to be added to course_modules
414 $table = new xmldb_table('course_modules');
415 $field = new xmldb_field('completion');
416 $field->set_attributes(XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', 'groupmembersonly');
418 /// Launch add field completion
419 if (!$dbman->field_exists($table,$field)) {
420 $dbman->add_field($table, $field);
423 /// Define field completiongradeitemnumber to be added to course_modules
424 $field = new xmldb_field('completiongradeitemnumber');
425 $field->set_attributes(XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null, 'completion');
427 /// Launch add field completiongradeitemnumber
428 if (!$dbman->field_exists($table,$field)) {
429 $dbman->add_field($table, $field);
432 /// Define field completionview to be added to course_modules
433 $field = new xmldb_field('completionview');
434 $field->set_attributes(XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', 'completiongradeitemnumber');
436 /// Launch add field completionview
437 if (!$dbman->field_exists($table,$field)) {
438 $dbman->add_field($table, $field);
441 /// Define field completionexpected to be added to course_modules
442 $field = new xmldb_field('completionexpected');
443 $field->set_attributes(XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', 'completionview');
445 /// Launch add field completionexpected
446 if (!$dbman->field_exists($table,$field)) {
447 $dbman->add_field($table, $field);
450 /// Define table course_modules_completion to be created
451 $table = new xmldb_table('course_modules_completion');
452 if (!$dbman->table_exists($table)) {
454 /// Adding fields to table course_modules_completion
455 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
456 $table->add_field('coursemoduleid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
457 $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
458 $table->add_field('completionstate', XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
459 $table->add_field('viewed', XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, null, null, null);
460 $table->add_field('timemodified', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
462 /// Adding keys to table course_modules_completion
463 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
465 /// Adding indexes to table course_modules_completion
466 $table->add_index('coursemoduleid', XMLDB_INDEX_NOTUNIQUE, array('coursemoduleid'));
467 $table->add_index('userid', XMLDB_INDEX_NOTUNIQUE, array('userid'));
469 /// Launch create table for course_modules_completion
470 $dbman->create_table($table);
473 /// Main savepoint reached
474 upgrade_main_savepoint(true, 2008072800);
477 if ($oldversion < 2008073000) {
479 /// Define table portfolio_log to be created
480 $table = new xmldb_table('portfolio_log');
482 /// Adding fields to table portfolio_log
483 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
484 $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
485 $table->add_field('time', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
486 $table->add_field('portfolio', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
487 $table->add_field('caller_class', XMLDB_TYPE_CHAR, '150', null, XMLDB_NOTNULL, null, null);
488 $table->add_field('caller_file', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
489 $table->add_field('caller_sha1', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
490 $table->add_field('tempdataid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0');
491 $table->add_field('returnurl', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
492 $table->add_field('continueurl', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
494 /// Adding keys to table portfolio_log
495 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
496 $table->add_key('userfk', XMLDB_KEY_FOREIGN, array('userid'), 'user', array('id'));
497 $table->add_key('portfoliofk', XMLDB_KEY_FOREIGN, array('portfolio'), 'portfolio_instance', array('id'));
499 /// Conditionally launch create table for portfolio_log
500 if (!$dbman->table_exists($table)) {
501 $dbman->create_table($table);
504 /// Main savepoint reached
505 upgrade_main_savepoint(true, 2008073000);
508 if ($oldversion < 2008073104) {
509 /// Drop old table that might exist for some people
510 $table = new xmldb_table('message_providers');
511 if ($dbman->table_exists($table)) {
512 $dbman->drop_table($table);
515 /// Define table message_providers to be created
516 $table = new xmldb_table('message_providers');
518 /// Adding fields to table message_providers
519 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
520 $table->add_field('name', XMLDB_TYPE_CHAR, '100', null, XMLDB_NOTNULL, null, null);
521 $table->add_field('component', XMLDB_TYPE_CHAR, '200', null, XMLDB_NOTNULL, null, null);
522 $table->add_field('capability', XMLDB_TYPE_CHAR, '255', null, null, null, null);
524 /// Adding keys to table message_providers
525 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
527 /// Adding indexes to table message_providers
528 $table->add_index('componentname', XMLDB_INDEX_UNIQUE, array('component', 'name'));
530 /// Create table for message_providers
531 $dbman->create_table($table);
533 upgrade_main_savepoint(true, 2008073104);
536 if ($oldversion < 2008073111) {
537 /// Define table files to be created
538 $table = new xmldb_table('files');
540 /// Adding fields to table files
541 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
542 $table->add_field('contenthash', XMLDB_TYPE_CHAR, '40', null, XMLDB_NOTNULL, null, null);
543 $table->add_field('pathnamehash', XMLDB_TYPE_CHAR, '40', null, XMLDB_NOTNULL, null, null);
544 $table->add_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
545 $table->add_field('component', XMLDB_TYPE_CHAR, '100', null, XMLDB_NOTNULL, null, null);
546 $table->add_field('filearea', XMLDB_TYPE_CHAR, '50', null, XMLDB_NOTNULL, null, null);
547 $table->add_field('itemid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
548 $table->add_field('filepath', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
549 $table->add_field('filename', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
550 $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
551 $table->add_field('filesize', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
552 $table->add_field('mimetype', XMLDB_TYPE_CHAR, '100', null, null, null, null);
553 $table->add_field('status', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
554 $table->add_field('source', XMLDB_TYPE_TEXT, 'small', null, null, null, null);
555 $table->add_field('author', XMLDB_TYPE_CHAR, '255', null, null, null, null);
556 $table->add_field('license', XMLDB_TYPE_CHAR, '255', null, null, null, null);
557 $table->add_field('timecreated', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
558 $table->add_field('timemodified', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
560 /// Adding keys to table files
561 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
562 $table->add_key('contextid', XMLDB_KEY_FOREIGN, array('contextid'), 'context', array('id'));
563 $table->add_key('userid', XMLDB_KEY_FOREIGN, array('userid'), 'user', array('id'));
565 /// Adding indexes to table files
566 $table->add_index('component-filearea-contextid-itemid', XMLDB_INDEX_NOTUNIQUE, array('component', 'filearea', 'contextid', 'itemid'));
567 $table->add_index('contenthash', XMLDB_INDEX_NOTUNIQUE, array('contenthash'));
568 $table->add_index('pathnamehash', XMLDB_INDEX_UNIQUE, array('pathnamehash'));
570 /// Conditionally launch create table for files
571 $dbman->create_table($table);
573 /// Main savepoint reached
574 upgrade_main_savepoint(true, 2008073111);
577 if ($oldversion < 2008073112) {
578 // Define field legacyfiles to be added to course
579 $table = new xmldb_table('course');
580 $field = new xmldb_field('legacyfiles', XMLDB_TYPE_INTEGER, '4', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', 'maxbytes');
582 // Launch add field legacyfiles
583 $dbman->add_field($table, $field);
584 // enable legacy files in all courses
585 $DB->execute("UPDATE {course} SET legacyfiles = 2");
587 // Main savepoint reached
588 upgrade_main_savepoint(true, 2008073112);
591 if ($oldversion < 2008073113) {
592 /// move all course, backup and other files to new filepool based storage
593 upgrade_migrate_files_courses();
594 /// Main savepoint reached
595 upgrade_main_savepoint(true, 2008073113);
598 if ($oldversion < 2008073114) {
599 /// move all course, backup and other files to new filepool based storage
600 upgrade_migrate_files_blog();
601 /// Main savepoint reached
602 upgrade_main_savepoint(true, 2008073114);
605 if ($oldversion < 2008080400) {
606 // Add field ssl_jump_url to mnet application, and populate existing default applications
607 $table = new xmldb_table('mnet_application');
608 $field = new xmldb_field('sso_jump_url');
609 if (!$dbman->field_exists($table, $field)) {
610 $field->set_attributes(XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
611 $dbman->add_field($table, $field);
612 $DB->set_field('mnet_application', 'sso_jump_url', '/auth/mnet/jump.php', array('name' => 'moodle'));
613 $DB->set_field('mnet_application', 'sso_jump_url', '/auth/xmlrpc/jump.php', array('name' => 'mahara'));
616 /// Main savepoint reached
617 upgrade_main_savepoint(true, 2008080400);
620 if ($oldversion < 2008080500) {
622 /// Define table portfolio_tempdata to be created
623 $table = new xmldb_table('portfolio_tempdata');
625 /// Adding fields to table portfolio_tempdata
626 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
627 $table->add_field('data', XMLDB_TYPE_TEXT, 'big', null, null, null, null);
628 $table->add_field('expirytime', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
629 $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
630 $table->add_field('instance', XMLDB_TYPE_INTEGER, '10', null, null, null, '0');
632 /// Adding keys to table portfolio_tempdata
633 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
634 $table->add_key('userfk', XMLDB_KEY_FOREIGN, array('userid'), 'user', array('id'));
635 $table->add_key('instance', XMLDB_KEY_FOREIGN, array('instance'), 'portfolio_instance', array('id'));
637 /// Conditionally launch create table for portfolio_tempdata
638 if (!$dbman->table_exists($table)) {
639 $dbman->create_table($table);
642 /// Main savepoint reached
643 upgrade_main_savepoint(true, 2008080500);
646 if ($oldversion < 2008081500) {
647 /// Changing the type of all the columns that the question bank uses to store grades to be NUMBER(12, 7).
648 $table = new xmldb_table('question');
649 $field = new xmldb_field('defaultgrade', XMLDB_TYPE_NUMBER, '12, 7', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '1.0000000', 'generalfeedback');
650 $dbman->change_field_type($table, $field);
651 upgrade_main_savepoint(true, 2008081500);
654 if ($oldversion < 2008081501) {
655 $table = new xmldb_table('question');
656 $field = new xmldb_field('penalty', XMLDB_TYPE_NUMBER, '12, 7', null, XMLDB_NOTNULL, null, '0.1000000', 'defaultgrade');
657 $dbman->change_field_type($table, $field);
658 upgrade_main_savepoint(true, 2008081501);
661 if ($oldversion < 2008081502) {
662 $table = new xmldb_table('question_answers');
663 $field = new xmldb_field('fraction', XMLDB_TYPE_NUMBER, '12, 7', null, XMLDB_NOTNULL, null, '0', 'answer');
664 $dbman->change_field_type($table, $field);
665 upgrade_main_savepoint(true, 2008081502);
668 if ($oldversion < 2008081503) {
669 $table = new xmldb_table('question_sessions');
670 $field = new xmldb_field('sumpenalty', XMLDB_TYPE_NUMBER, '12, 7', null, XMLDB_NOTNULL, null, '0', 'newgraded');
671 $dbman->change_field_type($table, $field);
672 upgrade_main_savepoint(true, 2008081503);
675 if ($oldversion < 2008081504) {
676 $table = new xmldb_table('question_states');
677 $field = new xmldb_field('grade', XMLDB_TYPE_NUMBER, '12, 7', null, XMLDB_NOTNULL, null, '0', 'event');
678 $dbman->change_field_type($table, $field);
679 upgrade_main_savepoint(true, 2008081504);
682 if ($oldversion < 2008081505) {
683 $table = new xmldb_table('question_states');
684 $field = new xmldb_field('raw_grade', XMLDB_TYPE_NUMBER, '12, 7', null, XMLDB_NOTNULL, null, '0', 'grade');
685 $dbman->change_field_type($table, $field);
686 upgrade_main_savepoint(true, 2008081505);
689 if ($oldversion < 2008081506) {
690 $table = new xmldb_table('question_states');
691 $field = new xmldb_field('penalty', XMLDB_TYPE_NUMBER, '12, 7', null, XMLDB_NOTNULL, null, '0', 'raw_grade');
692 $dbman->change_field_type($table, $field);
693 upgrade_main_savepoint(true, 2008081506);
696 if ($oldversion < 2008081600) {
698 /// all 1.9 sites and fresh installs must already be unicode, not needed anymore
699 unset_config('unicodedb');
701 /// Main savepoint reached
702 upgrade_main_savepoint(true, 2008081600);
705 if ($oldversion < 2008082602) {
707 /// Define table repository to be dropped
708 $table = new xmldb_table('repository');
710 /// Conditionally launch drop table for repository
711 if ($dbman->table_exists($table)) {
712 $dbman->drop_table($table);
715 /// Define table repository to be created
716 $table = new xmldb_table('repository');
718 /// Adding fields to table repository
719 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
720 $table->add_field('type', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
721 $table->add_field('visible', XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, null, null, '1');
722 $table->add_field('sortorder', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
724 /// Adding keys to table repository
725 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
727 /// Conditionally launch create table for repository
728 if (!$dbman->table_exists($table)) {
729 $dbman->create_table($table);
732 /// Define table repository_instances to be created
733 $table = new xmldb_table('repository_instances');
735 /// Adding fields to table repository_instances
736 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
737 $table->add_field('name', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
738 $table->add_field('typeid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
739 $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
740 $table->add_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
741 $table->add_field('username', XMLDB_TYPE_CHAR, '255', null, null, null, null);
742 $table->add_field('password', XMLDB_TYPE_CHAR, '255', null, null, null, null);
743 $table->add_field('timecreated', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
744 $table->add_field('timemodified', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
745 $table->add_field('readonly', XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
747 /// Adding keys to table repository_instances
748 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
750 /// Conditionally launch create table for repository_instances
751 if (!$dbman->table_exists($table)) {
752 $dbman->create_table($table);
755 /// Define table repository_instance_config to be created
756 $table = new xmldb_table('repository_instance_config');
758 /// Adding fields to table repository_instance_config
759 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
760 $table->add_field('instanceid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
761 $table->add_field('name', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
762 $table->add_field('value', XMLDB_TYPE_TEXT, 'big', null, null, null, null);
764 /// Adding keys to table repository_instance_config
765 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
767 /// Conditionally launch create table for repository_instance_config
768 if (!$dbman->table_exists($table)) {
769 $dbman->create_table($table);
772 /// Main savepoint reached
773 upgrade_main_savepoint(true, 2008082602);
776 if ($oldversion < 2008082700) {
777 /// Add a new column to the question sessions table to record whether a
778 /// question has been flagged.
780 /// Define field flagged to be added to question_sessions
781 $table = new xmldb_table('question_sessions');
782 $field = new xmldb_field('flagged', XMLDB_TYPE_INTEGER, '2', null, XMLDB_NOTNULL, null, '0', 'manualcomment');
784 /// Conditionally launch add field flagged
785 if (!$dbman->field_exists($table, $field)) {
786 $dbman->add_field($table, $field);
789 /// Main savepoint reached
790 upgrade_main_savepoint(true, 2008082700);
793 if ($oldversion < 2008082900) {
795 /// Changing precision of field parent_type on table mnet_rpc to (20)
796 $table = new xmldb_table('mnet_rpc');
797 $field = new xmldb_field('parent_type', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, null, 'xmlrpc_path');
799 /// Launch change of precision for field parent_type
800 $dbman->change_field_precision($table, $field);
802 /// Main savepoint reached
803 upgrade_main_savepoint(true, 2008082900);
806 // MDL-16411 Move all plugintype_pluginname_version values from config to config_plugins.
807 if ($oldversion < 2008091000) {
808 foreach (get_object_vars($CFG) as $name => $value) {
809 if (substr($name, strlen($name) - 8) !== '_version') {
812 $pluginname = substr($name, 0, strlen($name) - 8);
813 if (!strpos($pluginname, '_')) {
814 // Skip things like backup_version that don't contain an extra _
817 if ($pluginname == 'enrol_ldap_version') {
818 // Special case - this is something different from a plugin version number.
821 if (!preg_match('/^\d{10}$/', $value)) {
822 // Extra safety check, skip anything that does not look like a Moodle
823 // version number (10 digits).
826 set_config('version', $value, $pluginname);
829 upgrade_main_savepoint(true, 2008091000);
832 if ($oldversion < 2008092300) {
833 unset_config('editorspelling');
834 unset_config('editordictionary');
835 /// Main savepoint reached
836 upgrade_main_savepoint(true, 2008092300);
839 if ($oldversion < 2008101300) {
841 if (!get_config(NULL, 'statsruntimedays')) {
842 set_config('statsruntimedays', '31');
845 /// Main savepoint reached
846 upgrade_main_savepoint(true, 2008101300);
849 /// Drop the deprecated teacher, teachers, student and students columns from the course table.
850 if ($oldversion < 2008111200) {
851 $table = new xmldb_table('course');
853 /// Conditionally launch drop field teacher
854 $field = new xmldb_field('teacher');
855 if ($dbman->field_exists($table, $field)) {
856 $dbman->drop_field($table, $field);
859 /// Conditionally launch drop field teacher
860 $field = new xmldb_field('teachers');
861 if ($dbman->field_exists($table, $field)) {
862 $dbman->drop_field($table, $field);
865 /// Conditionally launch drop field teacher
866 $field = new xmldb_field('student');
867 if ($dbman->field_exists($table, $field)) {
868 $dbman->drop_field($table, $field);
871 /// Conditionally launch drop field teacher
872 $field = new xmldb_field('students');
873 if ($dbman->field_exists($table, $field)) {
874 $dbman->drop_field($table, $field);
877 /// Main savepoint reached
878 upgrade_main_savepoint(true, 2008111200);
881 /// Add a unique index to the role.name column.
882 if ($oldversion < 2008111800) {
884 /// Define index name (unique) to be added to role
885 $table = new xmldb_table('role');
886 $index = new xmldb_index('name', XMLDB_INDEX_UNIQUE, array('name'));
888 /// Conditionally launch add index name
889 if (!$dbman->index_exists($table, $index)) {
890 $dbman->add_index($table, $index);
893 /// Main savepoint reached
894 upgrade_main_savepoint(true, 2008111800);
897 /// Add a unique index to the role.shortname column.
898 if ($oldversion < 2008111801) {
900 /// Define index shortname (unique) to be added to role
901 $table = new xmldb_table('role');
902 $index = new xmldb_index('shortname', XMLDB_INDEX_UNIQUE, array('shortname'));
904 /// Conditionally launch add index shortname
905 if (!$dbman->index_exists($table, $index)) {
906 $dbman->add_index($table, $index);
909 /// Main savepoint reached
910 upgrade_main_savepoint(true, 2008111801);
913 if ($oldversion < 2008120700) {
915 /// Changing precision of field shortname on table course_request to (100)
916 $table = new xmldb_table('course_request');
917 $field = new xmldb_field('shortname', XMLDB_TYPE_CHAR, '100', null, XMLDB_NOTNULL, null, null, 'fullname');
919 /// Before changing the field, drop dependent indexes
920 /// Define index shortname (not unique) to be dropped form course_request
921 $index = new xmldb_index('shortname', XMLDB_INDEX_NOTUNIQUE, array('shortname'));
922 /// Conditionally launch drop index shortname
923 if ($dbman->index_exists($table, $index)) {
924 $dbman->drop_index($table, $index);
927 /// Launch change of precision for field shortname
928 $dbman->change_field_precision($table, $field);
930 /// After changing the field, recreate dependent indexes
931 /// Define index shortname (not unique) to be added to course_request
932 $index = new xmldb_index('shortname', XMLDB_INDEX_NOTUNIQUE, array('shortname'));
933 /// Conditionally launch add index shortname
934 if (!$dbman->index_exists($table, $index)) {
935 $dbman->add_index($table, $index);
938 /// Main savepoint reached
939 upgrade_main_savepoint(true, 2008120700);
942 if ($oldversion < 2008120801) {
944 /// Changing precision of field shortname on table mnet_enrol_course to (100)
945 $table = new xmldb_table('mnet_enrol_course');
946 $field = new xmldb_field('shortname', XMLDB_TYPE_CHAR, '100', null, XMLDB_NOTNULL, null, null, 'fullname');
948 /// Launch change of precision for field shortname
949 $dbman->change_field_precision($table, $field);
951 /// Main savepoint reached
952 upgrade_main_savepoint(true, 2008120801);
955 if ($oldversion < 2008121701) {
957 /// Define field availablefrom to be added to course_modules
958 $table = new xmldb_table('course_modules');
959 $field = new xmldb_field('availablefrom', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', 'completionexpected');
961 /// Conditionally launch add field availablefrom
962 if (!$dbman->field_exists($table, $field)) {
963 $dbman->add_field($table, $field);
966 /// Define field availableuntil to be added to course_modules
967 $field = new xmldb_field('availableuntil', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', 'availablefrom');
969 /// Conditionally launch add field availableuntil
970 if (!$dbman->field_exists($table, $field)) {
971 $dbman->add_field($table, $field);
974 /// Define field showavailability to be added to course_modules
975 $field = new xmldb_field('showavailability', XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', 'availableuntil');
977 /// Conditionally launch add field showavailability
978 if (!$dbman->field_exists($table, $field)) {
979 $dbman->add_field($table, $field);
982 /// Define table course_modules_availability to be created
983 $table = new xmldb_table('course_modules_availability');
985 /// Adding fields to table course_modules_availability
986 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
987 $table->add_field('coursemoduleid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
988 $table->add_field('sourcecmid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
989 $table->add_field('requiredcompletion', XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, null, null, null);
990 $table->add_field('gradeitemid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
991 $table->add_field('grademin', XMLDB_TYPE_NUMBER, '10, 5', null, null, null, null);
992 $table->add_field('grademax', XMLDB_TYPE_NUMBER, '10, 5', null, null, null, null);
994 /// Adding keys to table course_modules_availability
995 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
996 $table->add_key('coursemoduleid', XMLDB_KEY_FOREIGN, array('coursemoduleid'), 'course_modules', array('id'));
997 $table->add_key('sourcecmid', XMLDB_KEY_FOREIGN, array('sourcecmid'), 'course_modules', array('id'));
998 $table->add_key('gradeitemid', XMLDB_KEY_FOREIGN, array('gradeitemid'), 'grade_items', array('id'));
1000 /// Conditionally launch create table for course_modules_availability
1001 if (!$dbman->table_exists($table)) {
1002 $dbman->create_table($table);
1005 /// Changes to modinfo mean we need to rebuild course cache
1006 require_once($CFG->dirroot . '/course/lib.php');
1007 rebuild_course_cache(0, true);
1009 /// Main savepoint reached
1010 upgrade_main_savepoint(true, 2008121701);
1013 if ($oldversion < 2009010500) {
1014 /// clean up config table a bit
1015 unset_config('session_error_counter');
1017 /// Main savepoint reached
1018 upgrade_main_savepoint(true, 2009010500);
1021 if ($oldversion < 2009010600) {
1023 /// Define field originalquestion to be dropped from question_states
1024 $table = new xmldb_table('question_states');
1025 $field = new xmldb_field('originalquestion');
1027 /// Conditionally launch drop field originalquestion
1028 if ($dbman->field_exists($table, $field)) {
1029 $dbman->drop_field($table, $field);
1032 /// Main savepoint reached
1033 upgrade_main_savepoint(true, 2009010600);
1036 if ($oldversion < 2009010601) {
1038 /// Changing precision of field ip on table log to (45)
1039 $table = new xmldb_table('log');
1040 $field = new xmldb_field('ip', XMLDB_TYPE_CHAR, '45', null, XMLDB_NOTNULL, null, null, 'userid');
1042 /// Launch change of precision for field ip
1043 $dbman->change_field_precision($table, $field);
1045 /// Main savepoint reached
1046 upgrade_main_savepoint(true, 2009010601);
1049 if ($oldversion < 2009010602) {
1051 /// Changing precision of field lastip on table user to (45)
1052 $table = new xmldb_table('user');
1053 $field = new xmldb_field('lastip', XMLDB_TYPE_CHAR, '45', null, XMLDB_NOTNULL, null, null, 'currentlogin');
1055 /// Launch change of precision for field lastip
1056 $dbman->change_field_precision($table, $field);
1058 /// Main savepoint reached
1059 upgrade_main_savepoint(true, 2009010602);
1062 if ($oldversion < 2009010603) {
1064 /// Changing precision of field ip_address on table mnet_host to (45)
1065 $table = new xmldb_table('mnet_host');
1066 $field = new xmldb_field('ip_address', XMLDB_TYPE_CHAR, '45', null, XMLDB_NOTNULL, null, null, 'wwwroot');
1068 /// Launch change of precision for field ip_address
1069 $dbman->change_field_precision($table, $field);
1071 /// Main savepoint reached
1072 upgrade_main_savepoint(true, 2009010603);
1075 if ($oldversion < 2009010604) {
1077 /// Changing precision of field ip on table mnet_log to (45)
1078 $table = new xmldb_table('mnet_log');
1079 $field = new xmldb_field('ip', XMLDB_TYPE_CHAR, '45', null, XMLDB_NOTNULL, null, null, 'userid');
1081 /// Launch change of precision for field ip
1082 $dbman->change_field_precision($table, $field);
1084 /// Main savepoint reached
1085 upgrade_main_savepoint(true, 2009010604);
1088 if ($oldversion < 2009011000) {
1090 /// Changing nullability of field configdata on table block_instance to null
1091 $table = new xmldb_table('block_instance');
1092 $field = new xmldb_field('configdata');
1093 $field->set_attributes(XMLDB_TYPE_TEXT, 'small', null, null, null, null, 'visible');
1095 /// Launch change of nullability for field configdata
1096 $dbman->change_field_notnull($table, $field);
1098 /// Main savepoint reached
1099 upgrade_main_savepoint(true, 2009011000);
1102 if ($oldversion < 2009011100) {
1103 /// Remove unused settings
1104 unset_config('zip');
1105 unset_config('unzip');
1106 unset_config('adminblocks_initialised');
1108 /// Main savepoint reached
1109 upgrade_main_savepoint(true, 2009011100);
1112 if ($oldversion < 2009011101) {
1113 /// Migrate backup settings to core plugin config table
1114 $configs = $DB->get_records('backup_config');
1115 foreach ($configs as $config) {
1116 set_config($config->name, $config->value, 'backup');
1119 /// Define table to be dropped
1120 $table = new xmldb_table('backup_config');
1122 /// Launch drop table for old backup config
1123 $dbman->drop_table($table);
1125 /// Main savepoint reached
1126 upgrade_main_savepoint(true, 2009011101);
1129 if ($oldversion < 2009011303) {
1131 /// Define table config_log to be created
1132 $table = new xmldb_table('config_log');
1134 /// Adding fields to table config_log
1135 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
1136 $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
1137 $table->add_field('timemodified', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
1138 $table->add_field('plugin', XMLDB_TYPE_CHAR, '100', null, null, null, null);
1139 $table->add_field('name', XMLDB_TYPE_CHAR, '100', null, XMLDB_NOTNULL, null, null);
1140 $table->add_field('value', XMLDB_TYPE_TEXT, 'small', null, null, null, null);
1141 $table->add_field('oldvalue', XMLDB_TYPE_TEXT, 'small', null, null, null, null);
1143 /// Adding keys to table config_log
1144 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
1145 $table->add_key('userid', XMLDB_KEY_FOREIGN, array('userid'), 'user', array('id'));
1147 /// Adding indexes to table config_log
1148 $table->add_index('timemodified', XMLDB_INDEX_NOTUNIQUE, array('timemodified'));
1150 /// Launch create table for config_log
1151 $dbman->create_table($table);
1153 /// Main savepoint reached
1154 upgrade_main_savepoint(true, 2009011303);
1157 if ($oldversion < 2009011900) {
1159 /// Define table sessions2 to be dropped
1160 $table = new xmldb_table('sessions2');
1162 /// Conditionally launch drop table for sessions
1163 if ($dbman->table_exists($table)) {
1164 $dbman->drop_table($table);
1167 /// Define table sessions to be dropped
1168 $table = new xmldb_table('sessions');
1170 /// Conditionally launch drop table for sessions
1171 if ($dbman->table_exists($table)) {
1172 $dbman->drop_table($table);
1175 /// Define table sessions to be created
1176 $table = new xmldb_table('sessions');
1178 /// Adding fields to table sessions
1179 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
1180 $table->add_field('state', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
1181 $table->add_field('sid', XMLDB_TYPE_CHAR, '128', null, XMLDB_NOTNULL, null, null);
1182 $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
1183 $table->add_field('sessdata', XMLDB_TYPE_TEXT, 'big', null, null, null, null);
1184 $table->add_field('timecreated', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
1185 $table->add_field('timemodified', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
1186 $table->add_field('firstip', XMLDB_TYPE_CHAR, '45', null, null, null, null);
1187 $table->add_field('lastip', XMLDB_TYPE_CHAR, '45', null, null, null, null);
1189 /// Adding keys to table sessions
1190 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
1191 $table->add_key('userid', XMLDB_KEY_FOREIGN, array('userid'), 'user', array('id'));
1193 /// Adding indexes to table sessions
1194 $table->add_index('state', XMLDB_INDEX_NOTUNIQUE, array('state'));
1195 $table->add_index('sid', XMLDB_INDEX_UNIQUE, array('sid'));
1196 $table->add_index('timecreated', XMLDB_INDEX_NOTUNIQUE, array('timecreated'));
1197 $table->add_index('timemodified', XMLDB_INDEX_NOTUNIQUE, array('timemodified'));
1199 /// Launch create table for sessions
1200 $dbman->create_table($table);
1202 /// Main savepoint reached
1203 upgrade_main_savepoint(true, 2009011900);
1206 if ($oldversion < 2009021800) {
1207 // Converting format of grade conditions, if any exist, to percentages.
1209 UPDATE {course_modules_availability} SET grademin=(
1210 SELECT 100.0*({course_modules_availability}.grademin-gi.grademin)
1211 /(gi.grademax-gi.grademin)
1212 FROM {grade_items} gi
1213 WHERE gi.id={course_modules_availability}.gradeitemid)
1214 WHERE gradeitemid IS NOT NULL AND grademin IS NOT NULL");
1216 UPDATE {course_modules_availability} SET grademax=(
1217 SELECT 100.0*({course_modules_availability}.grademax-gi.grademin)
1218 /(gi.grademax-gi.grademin)
1219 FROM {grade_items} gi
1220 WHERE gi.id={course_modules_availability}.gradeitemid)
1221 WHERE gradeitemid IS NOT NULL AND grademax IS NOT NULL");
1223 /// Main savepoint reached
1224 upgrade_main_savepoint(true, 2009021800);
1227 if ($oldversion < 2009021801) {
1228 /// Define field backuptype to be added to backup_log
1229 $table = new xmldb_table('backup_log');
1230 $field = new xmldb_field('backuptype', XMLDB_TYPE_CHAR, '50', null, XMLDB_NOTNULL, null, null, 'info');
1231 /// Conditionally Launch add field backuptype and set all old records as 'scheduledbackup' records.
1232 if (!$dbman->field_exists($table, $field)) {
1233 $dbman->add_field($table, $field);
1234 $DB->execute("UPDATE {backup_log} SET backuptype='scheduledbackup'");
1237 /// Main savepoint reached
1238 upgrade_main_savepoint(true, 2009021801);
1241 /// Add default sort order for question types.
1242 if ($oldversion < 2009030300) {
1243 set_config('multichoice_sortorder', 1, 'question');
1244 set_config('truefalse_sortorder', 2, 'question');
1245 set_config('shortanswer_sortorder', 3, 'question');
1246 set_config('numerical_sortorder', 4, 'question');
1247 set_config('calculated_sortorder', 5, 'question');
1248 set_config('essay_sortorder', 6, 'question');
1249 set_config('match_sortorder', 7, 'question');
1250 set_config('randomsamatch_sortorder', 8, 'question');
1251 set_config('multianswer_sortorder', 9, 'question');
1252 set_config('description_sortorder', 10, 'question');
1253 set_config('random_sortorder', 11, 'question');
1254 set_config('missingtype_sortorder', 12, 'question');
1256 upgrade_main_savepoint(true, 2009030300);
1259 /// MDL-18132 replace the use a new Role allow switch settings page, instead of
1260 /// $CFG->allowuserswitchrolestheycantassign
1261 if ($oldversion < 2009032000) {
1262 /// First create the new table.
1263 $table = new xmldb_table('role_allow_switch');
1265 /// Adding fields to table role_allow_switch
1266 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
1267 $table->add_field('roleid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
1268 $table->add_field('allowswitch', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
1270 /// Adding keys to table role_allow_switch
1271 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
1272 $table->add_key('roleid', XMLDB_KEY_FOREIGN, array('roleid'), 'role', array('id'));
1273 $table->add_key('allowswitch', XMLDB_KEY_FOREIGN, array('allowswitch'), 'role', array('id'));
1275 /// Adding indexes to table role_allow_switch
1276 $table->add_index('roleid-allowoverride', XMLDB_INDEX_UNIQUE, array('roleid', 'allowswitch'));
1278 /// Conditionally launch create table for role_allow_switch
1279 if (!$dbman->table_exists($table)) {
1280 $dbman->create_table($table);
1283 /// Main savepoint reached
1284 upgrade_main_savepoint(true, 2009032000);
1287 if ($oldversion < 2009032001) {
1288 /// Copy from role_allow_assign into the new table.
1289 $DB->execute('INSERT INTO {role_allow_switch} (roleid, allowswitch)
1290 SELECT roleid, allowassign FROM {role_allow_assign}');
1292 /// Unset the config variable used in 1.9.
1293 unset_config('allowuserswitchrolestheycantassign');
1295 /// Main savepoint reached
1296 upgrade_main_savepoint(true, 2009032001);
1299 if ($oldversion < 2009040300) {
1301 /// Define table filter_active to be created
1302 $table = new xmldb_table('filter_active');
1304 /// Adding fields to table filter_active
1305 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
1306 $table->add_field('filter', XMLDB_TYPE_CHAR, '32', null, XMLDB_NOTNULL, null, null);
1307 $table->add_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
1308 $table->add_field('active', XMLDB_TYPE_INTEGER, '4', null, XMLDB_NOTNULL, null, null);
1309 $table->add_field('sortorder', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0');
1311 /// Adding keys to table filter_active
1312 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
1313 $table->add_key('contextid', XMLDB_KEY_FOREIGN, array('contextid'), 'context', array('id'));
1315 /// Adding indexes to table filter_active
1316 $table->add_index('contextid-filter', XMLDB_INDEX_UNIQUE, array('contextid', 'filter'));
1318 /// Conditionally launch create table for filter_active
1319 if (!$dbman->table_exists($table)) {
1320 $dbman->create_table($table);
1323 /// Main savepoint reached
1324 upgrade_main_savepoint(true, 2009040300);
1327 if ($oldversion < 2009040301) {
1329 /// Define table filter_config to be created
1330 $table = new xmldb_table('filter_config');
1332 /// Adding fields to table filter_config
1333 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
1334 $table->add_field('filter', XMLDB_TYPE_CHAR, '32', null, XMLDB_NOTNULL, null, null);
1335 $table->add_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
1336 $table->add_field('name', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
1337 $table->add_field('value', XMLDB_TYPE_TEXT, 'small', null, null, null, null);
1339 /// Adding keys to table filter_config
1340 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
1341 $table->add_key('contextid', XMLDB_KEY_FOREIGN, array('contextid'), 'context', array('id'));
1343 /// Adding indexes to table filter_config
1344 $table->add_index('contextid-filter-name', XMLDB_INDEX_UNIQUE, array('contextid', 'filter', 'name'));
1346 /// Conditionally launch create table for filter_config
1347 if (!$dbman->table_exists($table)) {
1348 $dbman->create_table($table);
1351 /// Main savepoint reached
1352 upgrade_main_savepoint(true, 2009040301);
1355 if ($oldversion < 2009040302) {
1356 /// Transfer current settings from $CFG->textfilters
1357 $disabledfilters = filter_get_all_installed();
1358 if (empty($CFG->textfilters)) {
1359 $activefilters = array();
1361 $activefilters = explode(',', $CFG->textfilters);
1363 $syscontext = get_context_instance(CONTEXT_SYSTEM);
1365 foreach ($activefilters as $filter) {
1366 filter_set_global_state($filter, TEXTFILTER_ON, $sortorder);
1368 unset($disabledfilters[$filter]);
1370 foreach ($disabledfilters as $filter => $notused) {
1371 filter_set_global_state($filter, TEXTFILTER_DISABLED, $sortorder);
1375 /// Main savepoint reached
1376 upgrade_main_savepoint(true, 2009040302);
1379 if ($oldversion < 2009040600) {
1380 /// Ensure that $CFG->stringfilters is set.
1381 if (empty($CFG->stringfilters)) {
1382 if (!empty($CFG->filterall)) {
1383 set_config('stringfilters', $CFG->textfilters);
1385 set_config('stringfilters', '');
1389 set_config('filterall', !empty($CFG->stringfilters));
1390 unset_config('textfilters');
1392 /// Main savepoint reached
1393 upgrade_main_savepoint(true, 2009040600);
1396 if ($oldversion < 2009041700) {
1397 /// To ensure the UI remains consistent with no behaviour change, any
1398 /// 'until' date in an activity condition should have 1 second subtracted
1399 /// (to go from 0:00 on the following day to 23:59 on the previous one).
1400 $DB->execute('UPDATE {course_modules} SET availableuntil = availableuntil - 1 WHERE availableuntil <> 0');
1401 require_once($CFG->dirroot . '/course/lib.php');
1402 rebuild_course_cache(0, true);
1404 /// Main savepoint reached
1405 upgrade_main_savepoint(true, 2009041700);
1408 if ($oldversion < 2009042600) {
1409 /// Deleting orphaned messages from deleted users.
1410 require_once($CFG->dirroot.'/message/lib.php');
1411 /// Detect deleted users with messages sent(useridfrom) and not read
1412 if ($deletedusers = $DB->get_records_sql('SELECT DISTINCT u.id
1414 JOIN {message} m ON m.useridfrom = u.id
1415 WHERE u.deleted = ?', array(1))) {
1416 foreach ($deletedusers as $deleteduser) {
1417 message_move_userfrom_unread2read($deleteduser->id); // move messages
1420 /// Main savepoint reached
1421 upgrade_main_savepoint(true, 2009042600);
1424 /// Dropping all enums/check contraints from core. MDL-18577
1425 if ($oldversion < 2009042700) {
1427 /// Changing list of values (enum) of field stattype on table stats_daily to none
1428 $table = new xmldb_table('stats_daily');
1429 $field = new xmldb_field('stattype', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, 'activity', 'roleid');
1431 /// Launch change of list of values for field stattype
1432 $dbman->drop_enum_from_field($table, $field);
1434 /// Changing list of values (enum) of field stattype on table stats_weekly to none
1435 $table = new xmldb_table('stats_weekly');
1436 $field = new xmldb_field('stattype', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, 'activity', 'roleid');
1438 /// Launch change of list of values for field stattype
1439 $dbman->drop_enum_from_field($table, $field);
1441 /// Changing list of values (enum) of field stattype on table stats_monthly to none
1442 $table = new xmldb_table('stats_monthly');
1443 $field = new xmldb_field('stattype', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, 'activity', 'roleid');
1445 /// Launch change of list of values for field stattype
1446 $dbman->drop_enum_from_field($table, $field);
1448 /// Changing list of values (enum) of field publishstate on table post to none
1449 $table = new xmldb_table('post');
1450 $field = new xmldb_field('publishstate', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, 'draft', 'attachment');
1452 /// Launch change of list of values for field publishstate
1453 $dbman->drop_enum_from_field($table, $field);
1455 /// Main savepoint reached
1456 upgrade_main_savepoint(true, 2009042700);
1459 if ($oldversion < 2009043000) {
1460 unset_config('grade_report_showgroups');
1461 upgrade_main_savepoint(true, 2009043000);
1464 if ($oldversion < 2009050600) {
1465 /// Site front page blocks need to be moved due to page name change.
1466 $DB->set_field('block_instance', 'pagetype', 'site-index', array('pagetype' => 'course-view', 'pageid' => SITEID));
1468 /// Main savepoint reached
1469 upgrade_main_savepoint(true, 2009050600);
1472 if ($oldversion < 2009050601) {
1474 /// Define table block_instance to be renamed to block_instances
1475 $table = new xmldb_table('block_instance');
1477 /// Launch rename table for block_instance
1478 $dbman->rename_table($table, 'block_instances');
1480 /// Main savepoint reached
1481 upgrade_main_savepoint(true, 2009050601);
1484 if ($oldversion < 2009050602) {
1486 /// Define table block_instance to be renamed to block_instance_old
1487 $table = new xmldb_table('block_pinned');
1489 /// Launch rename table for block_instance
1490 $dbman->rename_table($table, 'block_pinned_old');
1492 /// Main savepoint reached
1493 upgrade_main_savepoint(true, 2009050602);
1496 if ($oldversion < 2009050603) {
1498 /// Define table block_instance_old to be created
1499 $table = new xmldb_table('block_instance_old');
1501 /// Adding fields to table block_instance_old
1502 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
1503 $table->add_field('oldid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
1504 $table->add_field('blockid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
1505 $table->add_field('pageid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
1506 $table->add_field('pagetype', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, null);
1507 $table->add_field('position', XMLDB_TYPE_CHAR, '10', null, XMLDB_NOTNULL, null, null);
1508 $table->add_field('weight', XMLDB_TYPE_INTEGER, '3', null, XMLDB_NOTNULL, null, '0');
1509 $table->add_field('visible', XMLDB_TYPE_INTEGER, '1', null, XMLDB_NOTNULL, null, '0');
1510 $table->add_field('configdata', XMLDB_TYPE_TEXT, 'small', null, null, null, null);
1512 /// Adding keys to table block_instance_old
1513 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
1514 $table->add_key('blockid', XMLDB_KEY_FOREIGN, array('blockid'), 'block', array('id'));
1516 /// Adding indexes to table block_instance_old
1517 $table->add_index('pageid', XMLDB_INDEX_NOTUNIQUE, array('pageid'));
1518 $table->add_index('pagetype', XMLDB_INDEX_NOTUNIQUE, array('pagetype'));
1520 /// Conditionally launch create table for block_instance_old
1521 if (!$dbman->table_exists($table)) {
1522 $dbman->create_table($table);
1525 /// Main savepoint reached
1526 upgrade_main_savepoint(true, 2009050603);
1529 if ($oldversion < 2009050604) {
1530 /// Copy current blocks data from block_instances to block_instance_old
1531 $DB->execute('INSERT INTO {block_instance_old} (oldid, blockid, pageid, pagetype, position, weight, visible, configdata)
1532 SELECT id, blockid, pageid, pagetype, position, weight, visible, configdata FROM {block_instances} ORDER BY id');
1534 upgrade_main_savepoint(true, 2009050604);
1537 if ($oldversion < 2009050605) {
1539 /// Define field multiple to be dropped from block
1540 $table = new xmldb_table('block');
1541 $field = new xmldb_field('multiple');
1543 /// Conditionally launch drop field multiple
1544 if ($dbman->field_exists($table, $field)) {
1545 $dbman->drop_field($table, $field);
1548 /// Main savepoint reached
1549 upgrade_main_savepoint(true, 2009050605);
1552 if ($oldversion < 2009050606) {
1553 $table = new xmldb_table('block_instances');
1555 /// Rename field weight on table block_instances to defaultweight
1556 $field = new xmldb_field('weight', XMLDB_TYPE_INTEGER, 10, null, XMLDB_NOTNULL, null, null, 'position');
1557 $dbman->rename_field($table, $field, 'defaultweight');
1559 /// Rename field position on table block_instances to defaultregion
1560 $field = new xmldb_field('position', XMLDB_TYPE_CHAR, '10', null, XMLDB_NOTNULL, null, null, 'pagetype');
1561 $dbman->rename_field($table, $field, 'defaultregion');
1563 /// Main savepoint reached
1564 upgrade_main_savepoint(true, 2009050606);
1567 if ($oldversion < 2009050607) {
1568 /// Changing precision of field defaultregion on table block_instances to (16)
1569 $table = new xmldb_table('block_instances');
1570 $field = new xmldb_field('defaultregion', XMLDB_TYPE_CHAR, '16', null, XMLDB_NOTNULL, null, null, 'pagetype');
1572 /// Launch change of precision for field defaultregion
1573 $dbman->change_field_precision($table, $field);
1575 /// Main savepoint reached
1576 upgrade_main_savepoint(true, 2009050607);
1579 if ($oldversion < 2009050608) {
1580 /// Change regions to the new notation
1581 $DB->set_field('block_instances', 'defaultregion', 'side-pre', array('defaultregion' => 'l'));
1582 $DB->set_field('block_instances', 'defaultregion', 'side-post', array('defaultregion' => 'r'));
1583 $DB->set_field('block_instances', 'defaultregion', 'course-view-top', array('defaultregion' => 'c'));
1584 // This third one is a custom value from contrib/patches/center_blocks_position_patch and the
1585 // flex page course format. Hopefully this new value is an adequate alternative.
1587 /// Main savepoint reached
1588 upgrade_main_savepoint(true, 2009050608);
1591 if ($oldversion < 2009050609) {
1593 /// Define key blockname (unique) to be added to block
1594 $table = new xmldb_table('block');
1595 $key = new xmldb_key('blockname', XMLDB_KEY_UNIQUE, array('name'));
1597 /// Launch add key blockname
1598 $dbman->add_key($table, $key);
1600 /// Main savepoint reached
1601 upgrade_main_savepoint(true, 2009050609);
1604 if ($oldversion < 2009050610) {
1605 $table = new xmldb_table('block_instances');
1607 /// Define field blockname to be added to block_instances
1608 $field = new xmldb_field('blockname', XMLDB_TYPE_CHAR, '40', null, null, null, null, 'blockid');
1609 if (!$dbman->field_exists($table, $field)) {
1610 $dbman->add_field($table, $field);
1613 /// Define field contextid to be added to block_instances
1614 $field = new xmldb_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null, 'blockname');
1615 if (!$dbman->field_exists($table, $field)) {
1616 $dbman->add_field($table, $field);
1619 /// Define field showinsubcontexts to be added to block_instances
1620 $field = new xmldb_field('showinsubcontexts', XMLDB_TYPE_INTEGER, '4', null, null, null, null, 'contextid');
1621 if (!$dbman->field_exists($table, $field)) {
1622 $dbman->add_field($table, $field);
1625 /// Define field subpagepattern to be added to block_instances
1626 $field = new xmldb_field('subpagepattern', XMLDB_TYPE_CHAR, '16', null, null, null, null, 'pagetype');
1627 if (!$dbman->field_exists($table, $field)) {
1628 $dbman->add_field($table, $field);
1631 /// Main savepoint reached
1632 upgrade_main_savepoint(true, 2009050610);
1635 if ($oldversion < 2009050611) {
1636 $table = new xmldb_table('block_instances');
1638 /// Fill in blockname from blockid
1639 $DB->execute("UPDATE {block_instances} SET blockname = (SELECT name FROM {block} WHERE id = blockid)");
1641 /// Set showinsubcontexts = 0 for all rows.
1642 $DB->execute("UPDATE {block_instances} SET showinsubcontexts = 0");
1644 /// Main savepoint reached
1645 upgrade_main_savepoint(true, 2009050611);
1648 if ($oldversion < 2009050612) {
1650 /// Rename field pagetype on table block_instances to pagetypepattern
1651 $table = new xmldb_table('block_instances');
1652 $field = new xmldb_field('pagetype', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, null, 'pageid');
1654 /// Launch rename field pagetype
1655 $dbman->rename_field($table, $field, 'pagetypepattern');
1657 /// Main savepoint reached
1658 upgrade_main_savepoint(true, 2009050612);
1661 if ($oldversion < 2009050613) {
1662 /// fill in contextid and subpage, and update pagetypepattern from pagetype and pageid
1665 $frontpagecontext = get_context_instance(CONTEXT_COURSE, SITEID);
1666 $DB->execute("UPDATE {block_instances} SET contextid = " . $frontpagecontext->id . ",
1667 pagetypepattern = 'site-index',
1668 subpagepattern = NULL
1669 WHERE pagetypepattern = 'site-index'");
1672 $DB->execute("UPDATE {block_instances} SET
1676 JOIN {course} ON instanceid = {course}.id AND contextlevel = " . CONTEXT_COURSE . "
1677 WHERE {course}.id = pageid
1679 pagetypepattern = 'course-view-*',
1680 subpagepattern = NULL
1681 WHERE pagetypepattern = 'course-view'");
1684 $syscontext = get_context_instance(CONTEXT_SYSTEM);
1685 $DB->execute("UPDATE {block_instances} SET
1686 contextid = " . $syscontext->id . ",
1687 pagetypepattern = 'admin-*',
1688 subpagepattern = NULL
1689 WHERE pagetypepattern = 'admin'");
1692 $DB->execute("UPDATE {block_instances} SET
1696 JOIN {user} ON instanceid = {user}.id AND contextlevel = " . CONTEXT_USER . "
1697 WHERE {user}.id = pageid
1699 pagetypepattern = 'my-index',
1700 subpagepattern = NULL
1701 WHERE pagetypepattern = 'my-index'");
1704 $DB->execute("UPDATE {block_instances} SET
1705 contextid = " . $syscontext->id . ",
1706 pagetypepattern = 'tag-index',
1707 subpagepattern = pageid
1708 WHERE pagetypepattern = 'tag-index'");
1711 $DB->execute("UPDATE {block_instances} SET
1715 JOIN {user} ON instanceid = {user}.id AND contextlevel = " . CONTEXT_USER . "
1716 WHERE {user}.id = pageid
1718 pagetypepattern = 'blog-index',
1719 subpagepattern = NULL
1720 WHERE pagetypepattern = 'blog-view'");
1723 $moduleswithblocks = array('chat', 'data', 'lesson', 'quiz', 'dimdim', 'game', 'wiki', 'oublog');
1724 foreach ($moduleswithblocks as $modname) {
1725 if (!$dbman->table_exists($modname)) {
1728 $DB->execute("UPDATE {block_instances} SET
1732 JOIN {course_modules} ON instanceid = {course_modules}.id AND contextlevel = " . CONTEXT_MODULE . "
1733 JOIN {modules} ON {modules}.id = {course_modules}.module AND {modules}.name = '$modname'
1734 JOIN {{$modname}} ON {course_modules}.instance = {{$modname}}.id
1735 WHERE {{$modname}}.id = pageid
1737 pagetypepattern = 'blog-index',
1738 subpagepattern = NULL
1739 WHERE pagetypepattern = 'blog-view'");
1742 /// Main savepoint reached
1743 upgrade_main_savepoint(true, 2009050613);
1746 if ($oldversion < 2009050614) {
1747 /// fill in any missing contextids with a dummy value, so we can add the not-null constraint.
1748 $DB->execute("UPDATE {block_instances} SET contextid = 0 WHERE contextid IS NULL");
1750 /// Main savepoint reached
1751 upgrade_main_savepoint(true, 2009050614);
1754 if ($oldversion < 2009050615) {
1755 $table = new xmldb_table('block_instances');
1757 /// Arrived here, any block_instances record without blockname is one
1758 /// orphan block coming from 1.9. Just delete them. MDL-22503
1759 $DB->delete_records_select('block_instances', 'blockname IS NULL');
1761 /// Changing nullability of field blockname on table block_instances to not null
1762 $field = new xmldb_field('blockname', XMLDB_TYPE_CHAR, '40', null, XMLDB_NOTNULL, null, null, 'id');
1763 $dbman->change_field_notnull($table, $field);
1765 /// Changing nullability of field contextid on table block_instances to not null
1766 $field = new xmldb_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null, 'blockname');
1767 $dbman->change_field_notnull($table, $field);
1769 /// Changing nullability of field showinsubcontexts on table block_instances to not null
1770 $field = new xmldb_field('showinsubcontexts', XMLDB_TYPE_INTEGER, '4', null, XMLDB_NOTNULL, null, null, 'contextid');
1771 $dbman->change_field_notnull($table, $field);
1773 /// Main savepoint reached
1774 upgrade_main_savepoint(true, 2009050615);
1777 if ($oldversion < 2009050616) {
1778 /// Add exiting sticky blocks.
1779 $blocks = $DB->get_records('block');
1780 $syscontext = get_context_instance(CONTEXT_SYSTEM);
1781 $newregions = array(
1784 'c' => 'course-view-top',
1786 $stickyblocks = $DB->get_recordset('block_pinned_old');
1787 foreach ($stickyblocks as $stickyblock) {
1788 // Only if the block exists (avoid orphaned sticky blocks)
1789 if (!isset($blocks[$stickyblock->blockid]) || empty($blocks[$stickyblock->blockid]->name)) {
1792 $newblock = new stdClass();
1793 $newblock->blockname = $blocks[$stickyblock->blockid]->name;
1794 $newblock->contextid = $syscontext->id;
1795 $newblock->showinsubcontexts = 1;
1796 switch ($stickyblock->pagetype) {
1798 $newblock->pagetypepattern = 'course-view-*';
1801 $newblock->pagetypepattern = $stickyblock->pagetype;
1803 $newblock->defaultregion = $newregions[$stickyblock->position];
1804 $newblock->defaultweight = $stickyblock->weight;
1805 $newblock->configdata = $stickyblock->configdata;
1806 $newblock->visible = 1;
1807 $DB->insert_record('block_instances', $newblock);
1810 /// Main savepoint reached
1811 upgrade_main_savepoint(true, 2009050616);
1814 if ($oldversion < 2009050617) {
1816 /// Define table block_positions to be created
1817 $table = new xmldb_table('block_positions');
1819 /// Adding fields to table block_positions
1820 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
1821 $table->add_field('blockinstanceid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
1822 $table->add_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
1823 $table->add_field('pagetype', XMLDB_TYPE_CHAR, '64', null, XMLDB_NOTNULL, null, null);
1824 $table->add_field('subpage', XMLDB_TYPE_CHAR, '16', null, XMLDB_NOTNULL, null, null);
1825 $table->add_field('visible', XMLDB_TYPE_INTEGER, '4', null, XMLDB_NOTNULL, null, null);
1826 $table->add_field('region', XMLDB_TYPE_CHAR, '16', null, XMLDB_NOTNULL, null, null);
1827 $table->add_field('weight', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, null);
1829 /// Adding keys to table block_positions
1830 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
1831 $table->add_key('blockinstanceid', XMLDB_KEY_FOREIGN, array('blockinstanceid'), 'block_instances', array('id'));
1832 $table->add_key('contextid', XMLDB_KEY_FOREIGN, array('contextid'), 'context', array('id'));
1834 /// Adding indexes to table block_positions
1835 $table->add_index('blockinstanceid-contextid-pagetype-subpage', XMLDB_INDEX_UNIQUE, array('blockinstanceid', 'contextid', 'pagetype', 'subpage'));
1837 /// Conditionally launch create table for block_positions
1838 if (!$dbman->table_exists($table)) {
1839 $dbman->create_table($table);
1842 /// Main savepoint reached
1843 upgrade_main_savepoint(true, 2009050617);
1846 if ($oldversion < 2009050618) {
1847 /// And block instances with visible = 0, copy that information to block_positions
1848 $DB->execute("INSERT INTO {block_positions} (blockinstanceid, contextid, pagetype, subpage, visible, region, weight)
1849 SELECT bi.id, bi.contextid,
1850 CASE WHEN bi.pagetypepattern = 'course-view-*'
1851 THEN (SELECT " . $DB->sql_concat("'course-view-'", 'c.format') . "
1853 JOIN {context} ctx ON c.id = ctx.instanceid
1854 WHERE ctx.id = bi.contextid)
1855 ELSE bi.pagetypepattern END,
1856 CASE WHEN bi.subpagepattern IS NULL
1858 ELSE bi.subpagepattern END,
1859 0, bi.defaultregion, bi.defaultweight
1860 FROM {block_instances} bi
1861 WHERE bi.visible = 0 AND bi.pagetypepattern <> 'admin-*' AND bi.pagetypepattern IS NOT NULL");
1862 // note: MDL-25031 all block instances should have a pagetype pattern, NULL is not allowed,
1863 // if we manage to find out how NULLs get there we should fix them before this step
1865 /// Main savepoint reached
1866 upgrade_main_savepoint(true, 2009050618);
1869 if ($oldversion < 2009050619) {
1870 $table = new xmldb_table('block_instances');
1872 /// Define field blockid to be dropped from block_instances
1873 $field = new xmldb_field('blockid');
1874 if ($dbman->field_exists($table, $field)) {
1875 /// Before dropping the field, drop dependent indexes
1876 $index = new xmldb_index('blockid', XMLDB_INDEX_NOTUNIQUE, array('blockid'));
1877 if ($dbman->index_exists($table, $index)) {
1878 /// Launch drop index blockid
1879 $dbman->drop_index($table, $index);
1881 $dbman->drop_field($table, $field);
1884 /// Define field pageid to be dropped from block_instances
1885 $field = new xmldb_field('pageid');
1886 if ($dbman->field_exists($table, $field)) {
1887 /// Before dropping the field, drop dependent indexes
1888 $index = new xmldb_index('pageid', XMLDB_INDEX_NOTUNIQUE, array('pageid'));
1889 if ($dbman->index_exists($table, $index)) {
1890 /// Launch drop index pageid
1891 $dbman->drop_index($table, $index);
1893 $dbman->drop_field($table, $field);
1896 /// Define field visible to be dropped from block_instances
1897 $field = new xmldb_field('visible');
1898 if ($dbman->field_exists($table, $field)) {
1899 $dbman->drop_field($table, $field);
1902 /// Main savepoint reached
1903 upgrade_main_savepoint(true, 2009050619);
1906 if ($oldversion < 2009051200) {
1907 /// Let's check the status of mandatory mnet_host records, fixing them
1908 /// and moving "orphan" users to default localhost record. MDL-16879
1909 echo $OUTPUT->notification('Fixing mnet records, this may take a while...', 'notifysuccess');
1910 upgrade_fix_incorrect_mnethostids();
1912 /// Main savepoint reached
1913 upgrade_main_savepoint(true, 2009051200);
1917 if ($oldversion < 2009051700) {
1918 /// migrate editor settings
1919 if (empty($CFG->htmleditor)) {
1920 set_config('texteditors', 'textarea');
1922 set_config('texteditors', 'tinymce,textarea');
1925 unset_config('htmleditor');
1926 unset_config('defaulthtmleditor');
1928 /// Main savepoint reached
1929 upgrade_main_savepoint(true, 2009051700);
1932 /// Repeat 2009050607 upgrade step, which Petr commented out because of XMLDB
1933 /// stupidity, so lots of people will have missed.
1934 if ($oldversion < 2009061600) {
1935 /// Changing precision of field defaultregion on table block_instances to (16)
1936 $table = new xmldb_table('block_instances');
1937 $field = new xmldb_field('defaultregion', XMLDB_TYPE_CHAR, '16', null, XMLDB_NOTNULL, null, null, 'configdata');
1939 /// Launch change of precision for field defaultregion
1940 $dbman->change_field_precision($table, $field);
1942 /// Main savepoint reached
1943 upgrade_main_savepoint(true, 2009061600);
1946 if ($oldversion < 2009061702) {
1947 // standardizing plugin names
1948 if ($configs = $DB->get_records_select('config_plugins', "plugin LIKE 'quizreport_%'")) {
1949 foreach ($configs as $config) {
1950 unset_config($config->name, $config->plugin); /// unset old config
1951 $config->plugin = str_replace('quizreport_', 'quiz_', $config->plugin);
1952 set_config($config->name, $config->value, $config->plugin); /// set new config
1956 upgrade_main_savepoint(true, 2009061702);
1959 if ($oldversion < 2009061703) {
1960 // standardizing plugin names
1961 if ($configs = $DB->get_records_select('config_plugins', "plugin LIKE 'assignment_type_%'")) {
1962 foreach ($configs as $config) {
1963 unset_config($config->name, $config->plugin); /// unset old config
1964 $config->plugin = str_replace('assignment_type_', 'assignment_', $config->plugin);
1965 set_config($config->name, $config->value, $config->plugin); /// set new config
1969 upgrade_main_savepoint(true, 2009061703);
1972 if ($oldversion < 2009061704) {
1973 // change component string in capability records to new "_" format
1974 if ($caps = $DB->get_records('capabilities')) {
1975 foreach ($caps as $cap) {
1976 $cap->component = str_replace('/', '_', $cap->component);
1977 $DB->update_record('capabilities', $cap);
1981 upgrade_main_savepoint(true, 2009061704);
1984 if ($oldversion < 2009063000) {
1985 // upgrade format of _with_advanced settings - quiz only
1986 // note: this can be removed later, not needed for upgrades from 1.9.x
1987 if ($quiz = get_config('quiz')) {
1988 foreach ($quiz as $name=>$value) {
1989 if (strpos($name, 'fix_') !== 0) {
1992 $newname = substr($name,4).'_adv';
1993 set_config($newname, $value, 'quiz');
1994 unset_config($name, 'quiz');
1997 upgrade_main_savepoint(true, 2009063000);
2000 if ($oldversion < 2009071000) {
2002 /// Rename field contextid on table block_instances to parentcontextid
2003 $table = new xmldb_table('block_instances');
2004 $field = new xmldb_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null, 'blockname');
2006 /// Launch rename field parentcontextid
2007 $dbman->rename_field($table, $field, 'parentcontextid');
2009 /// Main savepoint reached
2010 upgrade_main_savepoint(true, 2009071000);
2013 if ($oldversion < 2009071600) {
2015 /// Define field summaryformat to be added to post
2016 $table = new xmldb_table('post');
2017 $field = new xmldb_field('summaryformat', XMLDB_TYPE_INTEGER, '2', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', 'format');
2019 /// Conditionally launch add field summaryformat
2020 if (!$dbman->field_exists($table, $field)) {
2021 $dbman->add_field($table, $field);
2024 /// Main savepoint reached
2025 upgrade_main_savepoint(true, 2009071600);
2028 if ($oldversion < 2009072400) {
2030 /// Define table comments to be created
2031 $table = new xmldb_table('comments');
2033 /// Adding fields to table comments
2034 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2035 $table->add_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2036 $table->add_field('commentarea', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
2037 $table->add_field('itemid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2038 $table->add_field('content', XMLDB_TYPE_TEXT, 'small', null, XMLDB_NOTNULL, null, null);
2039 $table->add_field('format', XMLDB_TYPE_INTEGER, '2', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
2040 $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2041 $table->add_field('timecreated', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2043 /// Adding keys to table comments
2044 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2046 /// Conditionally launch create table for comments
2047 if (!$dbman->table_exists($table)) {
2048 $dbman->create_table($table);
2051 /// Main savepoint reached
2052 upgrade_main_savepoint(true, 2009072400);
2056 * This upgrade is to set up the new navigation blocks that have been developed
2057 * as part of Moodle 2.0
2058 * Now I [Sam Hemelryk] hit a conundrum while exploring how to go about this
2059 * as not only do we want to install the new blocks but we also want to set up
2060 * default instances of them, and at the same time remove instances of the blocks
2061 * that were/will-be outmoded by the two new navigation blocks.
2062 * After talking it through with Tim Hunt {@link http://moodle.org/mod/cvsadmin/view.php?conversationid=3112}
2063 * we decided that the best way to go about this was to put the bulk of the
2064 * upgrade operation into core upgrade `here` but to let the plugins block
2065 * still install the blocks.
2066 * This leaves one hairy end in that we will create block_instances within the
2067 * DB before the blocks themselves are created within the DB
2069 if ($oldversion < 2009082800) {
2071 echo $OUTPUT->notification(get_string('navigationupgrade', 'admin'));
2073 // Get the system context so we can set the block instances to it
2074 $syscontext = get_context_instance(CONTEXT_SYSTEM);
2076 // An array to contain the new block instances we will create
2077 $newblockinstances = array('globalnavigation'=>new stdClass,'settingsnavigation'=>new stdClass);
2078 // The new global navigation block instance as a stdClass
2079 $newblockinstances['globalnavigation']->blockname = 'global_navigation_tree';
2080 $newblockinstances['globalnavigation']->parentcontextid = $syscontext->id; // System context
2081 $newblockinstances['globalnavigation']->showinsubcontexts = true; // Show absolutely everywhere
2082 $newblockinstances['globalnavigation']->pagetypepattern = '*'; // Thats right everywhere
2083 $newblockinstances['globalnavigation']->subpagetypepattern = null;
2084 $newblockinstances['globalnavigation']->defaultregion = BLOCK_POS_LEFT;
2085 $newblockinstances['globalnavigation']->defaultweight = -10; // Try make this first
2086 $newblockinstances['globalnavigation']->configdata = '';
2087 // The new settings navigation block instance as a stdClass
2088 $newblockinstances['settingsnavigation']->blockname = 'settings_navigation_tree';
2089 $newblockinstances['settingsnavigation']->parentcontextid = $syscontext->id;
2090 $newblockinstances['settingsnavigation']->showinsubcontexts = true;
2091 $newblockinstances['settingsnavigation']->pagetypepattern = '*';
2092 $newblockinstances['settingsnavigation']->subpagetypepattern = null;
2093 $newblockinstances['settingsnavigation']->defaultregion = BLOCK_POS_LEFT;
2094 $newblockinstances['settingsnavigation']->defaultweight = -9; // Try make this second
2095 $newblockinstances['settingsnavigation']->configdata = '';
2097 // Blocks that are outmoded and for whom the bells will toll... by which I
2098 // mean we will delete all instances of
2099 $outmodedblocks = array('participants','admin_tree','activity_modules','admin','course_list');
2100 $outmodedblocksstring = '\''.join('\',\'',$outmodedblocks).'\'';
2101 unset($outmodedblocks);
2102 // Retrieve the block instance id's and parent contexts, so we can join them an GREATLY
2103 // cut down the number of delete queries we will need to run
2104 $allblockinstances = $DB->get_recordset_select('block_instances', 'blockname IN ('.$outmodedblocksstring.')', array(), '', 'id, parentcontextid');
2106 $contextids = array();
2107 $instanceids = array();
2108 // Iterate through all block instances
2109 foreach ($allblockinstances as $blockinstance) {
2110 if (!in_array($blockinstance->parentcontextid, $contextids)) {
2111 $contextids[] = $blockinstance->parentcontextid;
2113 // If we have over 1000 contexts clean them up and reset the array
2114 // this ensures we don't hit any nasty memory limits or such
2115 if (count($contextids) > 1000) {
2116 upgrade_cleanup_unwanted_block_contexts($contextids);
2117 $contextids = array();
2120 if (!in_array($blockinstance->id, $instanceids)) {
2121 $instanceids[] = $blockinstance->id;
2122 // If we have more than 1000 block instances now remove all block positions
2123 // and empty the array
2124 if (count($contextids) > 1000) {
2125 $instanceidstring = join(',',$instanceids);
2126 $DB->delete_records_select('block_positions', 'blockinstanceid IN ('.$instanceidstring.')');
2127 $instanceids = array();
2132 upgrade_cleanup_unwanted_block_contexts($contextids);
2134 $instanceidstring = join(',',$instanceids);
2135 $DB->delete_records_select('block_positions', 'blockinstanceid IN ('.$instanceidstring.')');
2137 unset($allblockinstances);
2139 unset($instanceids);
2140 unset($instanceidstring);
2142 // Now remove the actual block instance
2143 $DB->delete_records_select('block_instances', 'blockname IN ('.$outmodedblocksstring.')');
2144 unset($outmodedblocksstring);
2146 // Insert the new block instances. Remember they have not been installed yet
2147 // however this should not be a problem
2148 foreach ($newblockinstances as $blockinstance) {
2149 $blockinstance->id= $DB->insert_record('block_instances', $blockinstance);
2150 // Ensure the block context is created.
2151 get_context_instance(CONTEXT_BLOCK, $blockinstance->id);
2153 unset($newblockinstances);
2155 upgrade_main_savepoint(true, 2009082800);
2156 // The end of the navigation upgrade
2159 if ($oldversion < 2009100602) {
2160 /// Define table external_functions to be created
2161 $table = new xmldb_table('external_functions');
2163 /// Adding fields to table external_functions
2164 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2165 $table->add_field('name', XMLDB_TYPE_CHAR, '200', null, XMLDB_NOTNULL, null, null);
2166 $table->add_field('classname', XMLDB_TYPE_CHAR, '100', null, XMLDB_NOTNULL, null, null);
2167 $table->add_field('methodname', XMLDB_TYPE_CHAR, '100', null, XMLDB_NOTNULL, null, null);
2168 $table->add_field('classpath', XMLDB_TYPE_CHAR, '255', null, null, null, null);
2169 $table->add_field('component', XMLDB_TYPE_CHAR, '100', null, XMLDB_NOTNULL, null, null);
2171 /// Adding keys to table external_functions
2172 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2174 /// Adding indexes to table external_functions
2175 $table->add_index('name', XMLDB_INDEX_UNIQUE, array('name'));
2177 /// Launch create table for external_functions
2178 $dbman->create_table($table);
2180 /// Main savepoint reached
2181 upgrade_main_savepoint(true, 2009100602);
2184 if ($oldversion < 2009100603) {
2185 /// Define table external_services to be created
2186 $table = new xmldb_table('external_services');
2188 /// Adding fields to table external_services
2189 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2190 $table->add_field('name', XMLDB_TYPE_CHAR, '200', null, XMLDB_NOTNULL, null, null);
2191 $table->add_field('enabled', XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2192 $table->add_field('requiredcapability', XMLDB_TYPE_CHAR, '150', null, null, null, null);
2193 $table->add_field('restrictedusers', XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2194 $table->add_field('component', XMLDB_TYPE_CHAR, '100', null, null, null, null);
2195 $table->add_field('timecreated', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2196 $table->add_field('timemodified', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
2198 /// Adding keys to table external_services
2199 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2201 /// Adding indexes to table external_services
2202 $table->add_index('name', XMLDB_INDEX_UNIQUE, array('name'));
2204 /// Launch create table for external_services
2205 $dbman->create_table($table);
2207 /// Main savepoint reached
2208 upgrade_main_savepoint(true, 2009100603);
2211 if ($oldversion < 2009100604) {
2212 /// Define table external_services_functions to be created
2213 $table = new xmldb_table('external_services_functions');
2215 /// Adding fields to table external_services_functions
2216 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2217 $table->add_field('externalserviceid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2218 $table->add_field('functionname', XMLDB_TYPE_CHAR, '200', null, XMLDB_NOTNULL, null, null);
2220 /// Adding keys to table external_services_functions
2221 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2222 $table->add_key('externalserviceid', XMLDB_KEY_FOREIGN, array('externalserviceid'), 'external_services', array('id'));
2224 /// Launch create table for external_services_functions
2225 $dbman->create_table($table);
2227 /// Main savepoint reached
2228 upgrade_main_savepoint(true, 2009100604);
2231 if ($oldversion < 2009100605) {
2232 /// Define table external_services_users to be created
2233 $table = new xmldb_table('external_services_users');
2235 /// Adding fields to table external_services_users
2236 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2237 $table->add_field('externalserviceid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2238 $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2239 $table->add_field('iprestriction', XMLDB_TYPE_CHAR, '255', null, null, null, null);
2240 $table->add_field('validuntil', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
2241 $table->add_field('timecreated', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
2243 /// Adding keys to table external_services_users
2244 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2245 $table->add_key('externalserviceid', XMLDB_KEY_FOREIGN, array('externalserviceid'), 'external_services', array('id'));
2246 $table->add_key('userid', XMLDB_KEY_FOREIGN, array('userid'), 'user', array('id'));
2248 /// Launch create table for external_services_users
2249 $dbman->create_table($table);
2251 /// Main savepoint reached
2252 upgrade_main_savepoint(true, 2009100605);
2255 if ($oldversion < 2009102600) {
2257 /// Define table external_tokens to be created
2258 $table = new xmldb_table('external_tokens');
2260 /// Adding fields to table external_tokens
2261 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2262 $table->add_field('token', XMLDB_TYPE_CHAR, '128', null, XMLDB_NOTNULL, null, null);
2263 $table->add_field('tokentype', XMLDB_TYPE_INTEGER, '4', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2264 $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2265 $table->add_field('externalserviceid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2266 $table->add_field('sid', XMLDB_TYPE_CHAR, '128', null, null, null, null);
2267 $table->add_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2268 $table->add_field('creatorid', XMLDB_TYPE_INTEGER, '20', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '1');
2269 $table->add_field('iprestriction', XMLDB_TYPE_CHAR, '255', null, null, null, null);
2270 $table->add_field('validuntil', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
2271 $table->add_field('timecreated', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2272 $table->add_field('lastaccess', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
2274 /// Adding keys to table external_tokens
2275 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2276 $table->add_key('userid', XMLDB_KEY_FOREIGN, array('userid'), 'user', array('id'));
2277 $table->add_key('externalserviceid', XMLDB_KEY_FOREIGN, array('externalserviceid'), 'external_services', array('id'));
2278 $table->add_key('contextid', XMLDB_KEY_FOREIGN, array('contextid'), 'context', array('id'));
2279 $table->add_key('creatorid', XMLDB_KEY_FOREIGN, array('creatorid'), 'user', array('id'));
2281 /// Launch create table for external_tokens
2282 $dbman->create_table($table);
2284 /// Main savepoint reached
2285 upgrade_main_savepoint(true, 2009102600);
2288 if ($oldversion < 2009103000) {
2290 /// Define table blog_association to be created
2291 $table = new xmldb_table('blog_association');
2293 /// Adding fields to table blog_association
2294 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2295 $table->add_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2296 $table->add_field('blogid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2298 /// Adding keys to table blog_association
2299 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2300 $table->add_key('contextid', XMLDB_KEY_FOREIGN, array('contextid'), 'context', array('id'));
2301 $table->add_key('blogid', XMLDB_KEY_FOREIGN, array('blogid'), 'post', array('id'));
2303 /// Conditionally launch create table for blog_association
2304 if (!$dbman->table_exists($table)) {
2305 $dbman->create_table($table);
2308 /// Define table blog_external to be created
2309 $table = new xmldb_table('blog_external');
2311 /// Adding fields to table blog_external
2312 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2313 $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2314 $table->add_field('name', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
2315 $table->add_field('description', XMLDB_TYPE_TEXT, 'small', null, null, null, null);
2316 $table->add_field('url', XMLDB_TYPE_TEXT, 'small', null, XMLDB_NOTNULL, null, null);
2317 $table->add_field('filtertags', XMLDB_TYPE_CHAR, '255', null, null, null, null);
2318 $table->add_field('failedlastsync', XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
2319 $table->add_field('timemodified', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
2320 $table->add_field('timefetched', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
2322 /// Adding keys to table blog_external
2323 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2324 $table->add_key('userid', XMLDB_KEY_FOREIGN, array('userid'), 'user', array('id'));
2326 /// Conditionally launch create table for blog_external
2327 if ($dbman->table_exists($table)) {
2328 // Delete the existing one first (comes from early dev version)
2329 $dbman->drop_table($table);
2331 $dbman->create_table($table);
2333 // now inform admins that some settings require attention after upgrade
2334 if (($CFG->bloglevel == BLOG_COURSE_LEVEL || $CFG->bloglevel == BLOG_GROUP_LEVEL) && empty($CFG->bloglevel_upgrade_complete)) {
2335 echo $OUTPUT->notification(get_string('bloglevelupgradenotice', 'admin'));
2340 $a->sitename = $site->fullname;
2341 $a->fixurl = "$CFG->wwwroot/$CFG->admin/bloglevelupgrade.php";
2343 $subject = get_string('bloglevelupgrade', 'admin');
2344 $description = get_string('bloglevelupgradedescription', 'admin', $a);
2346 // can not use messaging here because it is not configured yet!
2347 upgrade_log(UPGRADE_LOG_NOTICE, null, $subject, $description);
2349 /// Main savepoint reached
2350 upgrade_main_savepoint(true, 2009103000);
2353 if ($oldversion < 2009110400) {
2354 // list of tables where we need to add new format field and convert texts
2355 $extendtables = array('course' => 'summary',
2356 'course_categories' => 'description',
2357 'course_categories' => 'description',
2358 'course_request' => 'summary',
2359 'grade_outcomes' => 'description',
2360 'groups' => 'description',
2361 'groupings' => 'description',
2362 'scale' => 'description',
2363 'user_info_field' => 'description',
2364 'user_info_field' => 'defaultdata',
2365 'user_info_data' => 'data');
2367 foreach ($extendtables as $tablestr => $fieldstr) {
2368 $formatfieldstr = $fieldstr.'format';
2370 $table = new xmldb_table($tablestr);
2371 $field = new xmldb_field($formatfieldstr, XMLDB_TYPE_INTEGER, '2', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', $fieldstr);
2372 // Check that the field doesn't already exists
2373 if (!$dbman->field_exists($table, $field)) {
2374 // Add the new field
2375 $dbman->add_field($table, $field);
2377 if ($CFG->texteditors !== 'textarea') {
2378 $rs = $DB->get_recordset($tablestr, array($formatfieldstr => FORMAT_MOODLE), '', "id,$fieldstr,$formatfieldstr");
2379 foreach ($rs as $rec) {
2380 $rec->$fieldstr = text_to_html($rec->$fieldstr, false, false, true);
2381 $rec->$formatfieldstr = FORMAT_HTML;
2382 $DB->update_record($tablestr, $rec);
2383 upgrade_set_timeout();
2391 unset($extendtables);
2393 upgrade_main_savepoint(true, 2009110400);
2396 if ($oldversion < 2009110401) {
2397 $table = new xmldb_table('user');
2399 // Change the precision of the description field first up.
2401 $field = new xmldb_field('description', XMLDB_TYPE_TEXT, 'big', null, null, null, null, 'url');
2402 $dbman->change_field_precision($table, $field);
2404 $field = new xmldb_field('descriptionformat', XMLDB_TYPE_INTEGER, '2', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', 'description');
2405 // Check that the field doesn't already exists
2406 if (!$dbman->field_exists($table, $field)) {
2407 // Add the new field
2408 $dbman->add_field($table, $field);
2410 if ($CFG->texteditors !== 'textarea') {
2411 $rs = $DB->get_recordset('user', array('descriptionformat'=>FORMAT_MOODLE, 'deleted'=>0, 'htmleditor'=>1), '', "id,description,descriptionformat");
2412 foreach ($rs as $rec) {
2413 $rec->description = text_to_html($rec->description, false, false, true);
2414 $rec->descriptionformat = FORMAT_HTML;
2415 $DB->update_record('user', $rec);
2416 upgrade_set_timeout();
2421 upgrade_main_savepoint(true, 2009110401);
2424 if ($oldversion < 2009112400) {
2425 if (empty($CFG->passwordsaltmain)) {
2426 $subject = get_string('check_passwordsaltmain_name', 'report_security');
2427 $description = get_string('check_passwordsaltmain_warning', 'report_security');;
2428 upgrade_log(UPGRADE_LOG_NOTICE, null, $subject, $description);
2430 upgrade_main_savepoint(true, 2009112400);
2433 if ($oldversion < 2010011200) {
2434 $table = new xmldb_table('grade_categories');
2435 $field = new xmldb_field('hidden', XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, 0, 'timemodified');
2437 if (!$dbman->field_exists($table, $field)) {
2438 $dbman->add_field($table, $field);
2441 upgrade_main_savepoint(true, 2010011200);
2444 if ($oldversion < 2010012500) {
2445 upgrade_fix_incorrect_mnethostids();
2446 upgrade_main_savepoint(true, 2010012500);
2449 if ($oldversion < 2010012600) {
2450 // do stuff to the mnet table
2451 $table = new xmldb_table('mnet_rpc');
2453 $field = new xmldb_field('parent_type', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, null, 'xmlrpc_path');
2454 $dbman->rename_field($table, $field, 'plugintype');
2456 $field = new xmldb_field('parent', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, null, 'xmlrpc_path');
2457 $dbman->rename_field($table, $field, 'pluginname');
2459 $field = new xmldb_field('filename', XMLDB_TYPE_CHAR, '100', null, XMLDB_NOTNULL, null, null, 'profile');
2460 if (!$dbman->field_exists($table, $field)) {
2461 $dbman->add_field($table, $field);
2464 $field = new xmldb_field('classname', XMLDB_TYPE_CHAR, '150', null, null, null, null, 'filename');
2465 if (!$dbman->field_exists($table, $field)) {
2466 $dbman->add_field($table, $field);
2469 $field = new xmldb_field('static', XMLDB_TYPE_INTEGER, '1', null, null, null, null, 'classname');
2470 if (!$dbman->field_exists($table, $field)) {
2471 $dbman->add_field($table, $field);
2474 /// Main savepoint reached
2475 upgrade_main_savepoint(true, 2010012600);
2478 if ($oldversion < 2010012900) {
2480 /// Define table mnet_remote_rpc to be created
2481 $table = new xmldb_table('mnet_remote_rpc');
2483 /// Adding fields to table mnet_remote_rpc
2484 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2485 $table->add_field('functionname', XMLDB_TYPE_CHAR, '40', null, XMLDB_NOTNULL, null, null);
2486 $table->add_field('xmlrpcpath', XMLDB_TYPE_CHAR, '80', null, XMLDB_NOTNULL, null, null);
2488 /// Adding keys to table mnet_remote_rpc
2489 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2491 /// Conditionally launch create table for mnet_remote_rpc
2492 if (!$dbman->table_exists($table)) {
2493 $dbman->create_table($table);
2497 /// Define table mnet_remote_service2rpc to be created
2498 $table = new xmldb_table('mnet_remote_service2rpc');
2500 /// Adding fields to table mnet_remote_service2rpc
2501 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2502 $table->add_field('serviceid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
2503 $table->add_field('rpcid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
2505 /// Adding keys to table mnet_remote_service2rpc
2506 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2508 /// Adding indexes to table mnet_remote_service2rpc
2509 $table->add_index('rpcid_serviceid', XMLDB_INDEX_UNIQUE, array('rpcid', 'serviceid'));
2511 /// Conditionally launch create table for mnet_remote_service2rpc
2512 if (!$dbman->table_exists($table)) {
2513 $dbman->create_table($table);
2517 /// Rename field function_name on table mnet_rpc to functionname
2518 $table = new xmldb_table('mnet_rpc');
2519 $field = new xmldb_field('function_name', XMLDB_TYPE_CHAR, '40', null, XMLDB_NOTNULL, null, null, 'id');
2521 /// Launch rename field function_name
2522 $dbman->rename_field($table, $field, 'functionname');
2525 /// Rename field xmlrpc_path on table mnet_rpc to xmlrpcpath
2526 $table = new xmldb_table('mnet_rpc');
2527 $field = new xmldb_field('xmlrpc_path', XMLDB_TYPE_CHAR, '80', null, XMLDB_NOTNULL, null, null, 'function_name');
2529 /// Launch rename field xmlrpc_path
2530 $dbman->rename_field($table, $field, 'xmlrpcpath');
2533 /// Main savepoint reached
2534 upgrade_main_savepoint(true, 2010012900);
2537 if ($oldversion < 2010012901) {
2539 /// Define field plugintype to be added to mnet_remote_rpc
2540 $table = new xmldb_table('mnet_remote_rpc');
2541 $field = new xmldb_field('plugintype', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, null, 'xmlrpcpath');
2543 /// Conditionally launch add field plugintype
2544 if (!$dbman->field_exists($table, $field)) {
2545 $dbman->add_field($table, $field);
2548 /// Define field pluginname to be added to mnet_remote_rpc
2549 $field = new xmldb_field('pluginname', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, null, 'plugintype');
2551 /// Conditionally launch add field pluginname
2552 if (!$dbman->field_exists($table, $field)) {
2553 $dbman->add_field($table, $field);
2556 /// Main savepoint reached
2557 upgrade_main_savepoint(true, 2010012901);
2560 if ($oldversion < 2010012902) {
2562 /// Define field enabled to be added to mnet_remote_rpc
2563 $table = new xmldb_table('mnet_remote_rpc');
2564 $field = new xmldb_field('enabled', XMLDB_TYPE_INTEGER, '1', null, XMLDB_NOTNULL, null, null, 'pluginname');
2566 /// Conditionally launch add field enabled
2567 if (!$dbman->field_exists($table, $field)) {
2568 $dbman->add_field($table, $field);
2571 /// Main savepoint reached
2572 upgrade_main_savepoint(true, 2010012902);
2575 /// MDL-17863. Increase the portno column length on mnet_host to handle any port number
2576 if ($oldversion < 2010020100) {
2577 /// Changing precision of field portno on table mnet_host to (5)
2578 $table = new xmldb_table('mnet_host');
2579 $field = new xmldb_field('portno', XMLDB_TYPE_INTEGER, '5', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', 'transport');
2581 /// Launch change of precision for field portno
2582 $dbman->change_field_precision($table, $field);
2584 upgrade_main_savepoint(true, 2010020100);
2587 if ($oldversion < 2010020300) {
2589 /// Define field timecreated to be added to user
2590 $table = new xmldb_table('user');
2591 $field = new xmldb_field('timecreated', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', 'trackforums');
2593 if (!$dbman->field_exists($table, $field)) {
2594 /// Launch add field timecreated
2595 $dbman->add_field($table, $field);
2597 $DB->execute("UPDATE {user} SET timecreated = firstaccess");
2599 $sql = "UPDATE {user} SET timecreated = " . time() ." where timecreated = 0";
2602 upgrade_main_savepoint(true, 2010020300);
2605 // MDL-21407. Trim leading spaces from default tex latexpreamble causing problems under some confs
2606 if ($oldversion < 2010020301) {
2607 if ($preamble = $CFG->filter_tex_latexpreamble) {
2608 $preamble = preg_replace('/^ +/m', '', $preamble);
2609 set_config('filter_tex_latexpreamble', $preamble);
2611 upgrade_main_savepoint(true, 2010020301);
2614 if ($oldversion < 2010021400) {
2615 /// Changes to modinfo mean we need to rebuild course cache
2616 require_once($CFG->dirroot . '/course/lib.php');
2617 rebuild_course_cache(0, true);
2618 upgrade_main_savepoint(true, 2010021400);
2621 if ($oldversion < 2010021800) {
2622 $DB->set_field('mnet_application', 'sso_jump_url', '/auth/mnet/jump.php', array('name' => 'moodle'));
2623 upgrade_main_savepoint(true, 2010021800);
2626 if ($oldversion < 2010031900) {
2627 // regeneration of sessions is always enabled, no need for this setting any more
2628 unset_config('regenloginsession');
2629 upgrade_main_savepoint(true, 2010031900);
2632 if ($oldversion < 2010033101.02) {
2634 /// Define table license to be created
2635 $table = new xmldb_table('license');
2637 /// Adding fields to table license
2638 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2639 $table->add_field('shortname', XMLDB_TYPE_CHAR, '255', null, null, null, null);
2640 $table->add_field('fullname', XMLDB_TYPE_TEXT, 'small', null, null, null, null);
2641 $table->add_field('source', XMLDB_TYPE_CHAR, '255', null, null, null, null);
2642 $table->add_field('enabled', XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '1');
2643 $table->add_field('version', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0');
2645 /// Adding keys to table license
2646 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2648 /// Conditionally launch create table for license
2649 if (!$dbman->table_exists($table)) {
2650 $dbman->create_table($table);
2652 $active_licenses = array();
2654 $license = new stdClass();
2656 // add unknown license
2657 $license->shortname = 'unknown';
2658 $license->fullname = 'Unknown license';
2659 $license->source = '';
2660 $license->enabled = 1;
2661 $license->version = '2010033100';
2662 $active_licenses[] = $license->shortname;
2663 if ($record = $DB->get_record('license', array('shortname'=>$license->shortname))) {
2664 if ($record->version < $license->version) {
2665 // update license record
2666 $license->enabled = $record->enabled;
2667 $license->id = $record->id;
2668 $DB->update_record('license', $license);
2671 $DB->insert_record('license', $license);
2674 // add all rights reserved license
2675 $license->shortname = 'allrightsreserved';
2676 $license->fullname = 'All rights reserved';
2677 $license->source = 'http://en.wikipedia.org/wiki/All_rights_reserved';
2678 $license->enabled = 1;
2679 $license->version = '2010033100';
2680 $active_licenses[] = $license->shortname;
2681 if ($record = $DB->get_record('license', array('shortname'=>$license->shortname))) {
2682 if ($record->version < $license->version) {
2683 // update license record
2684 $license->id = $record->id;
2685 $license->enabled = $record->enabled;
2686 $DB->update_record('license', $license);
2689 $DB->insert_record('license', $license);
2692 // add public domain license
2693 $license->shortname = 'public';
2694 $license->fullname = 'Public Domain';
2695 $license->source = 'http://creativecommons.org/licenses/publicdomain/';
2696 $license->enabled = 1;
2697 $license->version = '2010033100';
2698 $active_licenses[] = $license->shortname;
2699 if ($record = $DB->get_record('license', array('shortname'=>$license->shortname))) {
2700 if ($record->version < $license->version) {
2701 // update license record
2702 $license->enabled = $record->enabled;
2703 $license->id = $record->id;
2704 $DB->update_record('license', $license);
2707 $DB->insert_record('license', $license);
2710 // add creative commons license
2711 $license->shortname = 'cc';
2712 $license->fullname = 'Creative Commons';
2713 $license->source = 'http://creativecommons.org/licenses/by/3.0/';
2714 $license->enabled = 1;
2715 $license->version = '2010033100';
2716 $active_licenses[] = $license->shortname;
2717 if ($record = $DB->get_record('license', array('shortname'=>$license->shortname))) {
2718 if ($record->version < $license->version) {
2719 // update license record
2720 $license->enabled = $record->enabled;
2721 $license->id = $record->id;
2722 $DB->update_record('license', $license);
2725 $DB->insert_record('license', $license);
2728 // add creative commons no derivs license
2729 $license->shortname = 'cc-nd';
2730 $license->fullname = 'Creative Commons - NoDerivs';
2731 $license->source = 'http://creativecommons.org/licenses/by-nd/3.0/';
2732 $license->enabled = 1;
2733 $license->version = '2010033100';
2734 $active_licenses[] = $license->shortname;
2735 if ($record = $DB->get_record('license', array('shortname'=>$license->shortname))) {
2736 if ($record->version < $license->version) {
2737 // update license record
2738 $license->enabled = $record->enabled;
2739 $license->id = $record->id;
2740 $DB->update_record('license', $license);
2743 $DB->insert_record('license', $license);
2746 // add creative commons no commercial no derivs license
2747 $license->shortname = 'cc-nc-nd';
2748 $license->fullname = 'Creative Commons - No Commercial NoDerivs';
2749 $license->source = 'http://creativecommons.org/licenses/by-nc-nd/3.0/';
2750 $license->enabled = 1;
2751 $license->version = '2010033100';
2752 $active_licenses[] = $license->shortname;
2753 if ($record = $DB->get_record('license', array('shortname'=>$license->shortname))) {
2754 if ($record->version < $license->version) {
2755 // update license record
2756 $license->enabled = $record->enabled;
2757 $license->id = $record->id;
2758 $DB->update_record('license', $license);
2761 $DB->insert_record('license', $license);
2764 // add creative commons no commercial
2765 $license->shortname = 'cc-nc-nd';
2766 $license->shortname = 'cc-nc';
2767 $license->fullname = 'Creative Commons - No Commercial';
2768 $license->source = 'http://creativecommons.org/licenses/by-nd/3.0/';
2769 $license->enabled = 1;
2770 $license->version = '2010033100';
2771 $active_licenses[] = $license->shortname;
2772 if ($record = $DB->get_record('license', array('shortname'=>$license->shortname))) {
2773 if ($record->version < $license->version) {
2774 // update license record
2775 $license->enabled = $record->enabled;
2776 $license->id = $record->id;
2777 $DB->update_record('license', $license);
2780 $DB->insert_record('license', $license);
2783 // add creative commons no commercial sharealike
2784 $license->shortname = 'cc-nc-sa';
2785 $license->fullname = 'Creative Commons - No Commercial ShareAlike';
2786 $license->source = 'http://creativecommons.org/licenses/by-nc-sa/3.0/';
2787 $license->enabled = 1;
2788 $license->version = '2010033100';
2789 $active_licenses[] = $license->shortname;
2790 if ($record = $DB->get_record('license', array('shortname'=>$license->shortname))) {
2791 if ($record->version < $license->version) {
2792 // update license record
2793 $license->enabled = $record->enabled;
2794 $license->id = $record->id;
2795 $DB->update_record('license', $license);
2798 $DB->insert_record('license', $license);
2801 // add creative commons sharealike
2802 $license->shortname = 'cc-sa';
2803 $license->fullname = 'Creative Commons - ShareAlike';
2804 $license->source = 'http://creativecommons.org/licenses/by-sa/3.0/';
2805 $license->enabled = 1;
2806 $license->version = '2010033100';
2807 $active_licenses[] = $license->shortname;
2808 if ($record = $DB->get_record('license', array('shortname'=>$license->shortname))) {
2809 if ($record->version < $license->version) {
2810 // update license record
2811 $license->enabled = $record->enabled;
2812 $license->id = $record->id;
2813 $DB->update_record('license', $license);
2816 $DB->insert_record('license', $license);
2819 set_config('licenses', implode(',', $active_licenses));
2820 /// set site default license
2821 set_config('sitedefaultlicense', 'allrightsreserved');
2823 /// Main savepoint reached
2824 upgrade_main_savepoint(true, 2010033101.02);
2827 if ($oldversion < 2010033102.00) {
2828 // rename course view capability to participate
2829 $params = array('viewcap'=>'moodle/course:view', 'participatecap'=>'moodle/course:participate');
2830 $sql = "UPDATE {role_capabilities} SET capability = :participatecap WHERE capability = :viewcap";
2831 $DB->execute($sql, $params);
2832 $sql = "UPDATE {capabilities} SET name = :participatecap WHERE name = :viewcap";
2833 $DB->execute($sql, $params);
2834 // note: the view capability is readded again at the end of upgrade, but with different meaning
2835 upgrade_main_savepoint(true, 2010033102.00);
2838 if ($oldversion < 2010033102.01) {
2839 // Define field archetype to be added to role table
2840 $table = new xmldb_table('role');
2841 $field = new xmldb_field('archetype', XMLDB_TYPE_CHAR, '30', null, XMLDB_NOTNULL, null, null, 'sortorder');
2842 $dbman->add_field($table, $field);
2843 upgrade_main_savepoint(true, 2010033102.01);
2846 if ($oldversion < 2010033102.02) {
2847 // Set archetype for existing roles and change admin role to manager role
2848 $sql = "SELECT r.*, rc.capability
2850 JOIN {role_capabilities} rc ON rc.roleid = r.id
2851 WHERE rc.contextid = :syscontextid AND rc.capability LIKE :legacycaps
2853 $params = array('syscontextid'=>SYSCONTEXTID, 'legacycaps'=>'moodle/legacy:%');
2854 $substart = strlen('moodle/legacy:');
2855 $roles = $DB->get_recordset_sql($sql, $params); // in theory could be multiple legacy flags in one role
2856 foreach ($roles as $role) {
2857 $role->archetype = substr($role->capability, $substart);
2858 unset($role->capability);
2859 if ($role->archetype === 'admin') {
2861 if ($DB->record_exists('role', array('shortname'=>'manager'))) {
2863 while($DB->record_exists('role', array('shortname'=>'manager'.$i))) {
2867 $role->archetype = 'manager';
2868 if ($role->shortname === 'admin') {
2869 $role->shortname = 'manager'.$i;
2870 $role->name = get_string('manager', 'role');
2871 $role->description = get_string('managerdescription', 'role');
2874 $DB->update_record('role', $role);
2878 upgrade_main_savepoint(true, 2010033102.02);
2881 if ($oldversion < 2010033102.03) {
2882 // Now pick site admins (===have manager role assigned at the system context)
2883 // and store them in the new $CFG->siteadmins setting as comma separated list
2884 $sql = "SELECT ra.id, ra.userid
2885 FROM {role_assignments} ra
2886 JOIN {role} r ON r.id = ra.roleid
2887 JOIN {user} u ON u.id = ra.userid
2888 WHERE ra.contextid = :syscontext AND r.archetype = 'manager' AND u.deleted = 0
2890 $ras = $DB->get_records_sql($sql, array('syscontext'=>SYSCONTEXTID));
2892 foreach ($ras as $ra) {
2893 $admins[$ra->userid] = $ra->userid;
2894 set_config('siteadmins', implode(',', $admins)); // better to save it repeatedly, we do need at least one admin
2895 $DB->delete_records('role_assignments', array('id'=>$ra->id));
2898 upgrade_main_savepoint(true, 2010033102.03);
2901 if ($oldversion < 2010033102.04) {
2902 // clean up the manager roles
2903 $managers = $DB->get_records('role', array('archetype'=>'manager'));
2904 foreach ($managers as $manager) {
2905 // now sanitize the capabilities and overrides
2906 $DB->delete_records('role_capabilities', array('capability'=>'moodle/site:config', 'roleid'=>$manager->id)); // only site admins may configure servers
2907 // note: doanything and legacy caps are deleted automatically, they get moodle/course:view later at the end of the upgrade
2909 // remove manager role assignments bellow the course context level - admin role was never intended for activities and blocks,
2910 // the problem is that those assignments would not be visible after upgrade and old style admins in activities make no sense anyway
2911 $DB->delete_records_select('role_assignments', "roleid = :manager AND contextid IN (SELECT id FROM {context} WHERE contextlevel > 50)", array('manager'=>$manager->id));
2913 // allow them to assign all roles except default user, guest and frontpage - users get these roles automatically on the fly when needed
2914 $DB->delete_records('role_allow_assign', array('roleid'=>$manager->id));
2915 $roles = $DB->get_records_sql("SELECT * FROM {role} WHERE archetype <> 'user' AND archetype <> 'guest' AND archetype <> 'frontpage'");
2916 foreach ($roles as $role) {
2917 $record = (object)array('roleid'=>$manager->id, 'allowassign'=>$role->id);
2918 $DB->insert_record('role_allow_assign', $record);
2921 // allow them to override all roles
2922 $DB->delete_records('role_allow_override', array('roleid'=>$manager->id));
2923 $roles = $DB->get_records_sql("SELECT * FROM {role}");
2924 foreach ($roles as $role) {
2925 $record = (object)array('roleid'=>$manager->id, 'allowoverride'=>$role->id);
2926 $DB->insert_record('role_allow_override', $record);
2929 // allow them to switch to all following roles
2930 $DB->delete_records('role_allow_switch', array('roleid'=>$manager->id));
2931 $roles = $DB->get_records_sql("SELECT * FROM {role} WHERE archetype IN ('student', 'teacher', 'editingteacher')");
2932 foreach ($roles as $role) {
2933 $record = (object)array('roleid'=>$manager->id, 'allowswitch'=>$role->id);
2934 $DB->insert_record('role_allow_switch', $record);
2938 upgrade_main_savepoint(true, 2010033102.04);
2941 if ($oldversion < 2010033102.05) {
2942 // remove course:view from all roles that are not used for enrolment, it does NOT belong there because it really means user is enrolled!
2943 $noenrolroles = $DB->get_records_select('role', "archetype IN ('guest', 'user', 'manager', 'coursecreator', 'frontpage')");
2944 foreach ($noenrolroles as $role) {
2945 $DB->delete_records('role_capabilities', array('roleid'=>$role->id, 'capability'=>'moodle/course:participate'));
2947 upgrade_main_savepoint(true, 2010033102.05);
2950 if ($oldversion < 2010033102.06) {
2951 // make sure there is nothing weird in default user role
2952 if (!empty($CFG->defaultuserroleid)) {
2953 if ($role = $DB->get_record('role', array('id'=>$CFG->defaultuserroleid))) {
2954 if ($role->archetype !== '' and $role->archetype !== 'user') {
2955 upgrade_log(UPGRADE_LOG_NOTICE, null, 'Default authenticated user role (defaultuserroleid) value is invalid, setting cleared.');
2956 unset_config('defaultuserroleid');
2959 unset_config('defaultuserroleid');
2962 upgrade_main_savepoint(true, 2010033102.06);
2965 if ($oldversion < 2010033102.07) {
2966 if (!empty($CFG->displayloginfailures) and $CFG->displayloginfailures === 'teacher') {
2967 upgrade_log(UPGRADE_LOG_NOTICE, null, 'Displaying of login failuters to teachers is not supported any more.');
2968 unset_config('displayloginfailures');
2970 upgrade_main_savepoint(true, 2010033102.07);
2973 if ($oldversion < 2010033102.08) {
2974 // make sure there are no problems in default guest role settings
2975 if (!empty($CFG->guestroleid)) {
2976 if ($role = $DB->get_record('role', array('id'=>$CFG->guestroleid))) {
2977 if ($role->archetype !== '' and $role->archetype !== 'guest') {
2978 upgrade_log(UPGRADE_LOG_NOTICE, null, 'Default guest role (guestroleid) value is invalid, setting cleared.');
2979 unset_config('guestroleid');
2982 upgrade_log(UPGRADE_LOG_NOTICE, null, 'Role specified in Default guest role (guestroleid) does not exist, setting cleared.');
2983 unset_config('guestroleid');
2986 // remove all roles of the guest account - the only way to change it is to override the guest role, sorry
2987 // the guest account gets all the role assignments on the fly which works fine in has_capability(),
2988 $DB->delete_records_select('role_assignments', "userid IN (SELECT id FROM {user} WHERE username = 'guest')");
2990 upgrade_main_savepoint(true, 2010033102.08);
2993 /// New table for storing which roles can be assigned in which contexts.
2994 if ($oldversion < 2010033102.09) {
2996 /// Define table role_context_levels to be created
2997 $table = new xmldb_table('role_context_levels');
2999 /// Adding fields to table role_context_levels
3000 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
3001 $table->add_field('roleid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3002 $table->add_field('contextlevel', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3004 /// Adding keys to table role_context_levels
3005 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
3006 $table->add_key('contextlevel-roleid', XMLDB_KEY_UNIQUE, array('contextlevel', 'roleid'));
3007 $table->add_key('roleid', XMLDB_KEY_FOREIGN, array('roleid'), 'role', array('id'));
3009 /// Conditionally launch create table for role_context_levels
3010 if (!$dbman->table_exists($table)) {
3011 $dbman->create_table($table);
3014 /// Main savepoint reached
3015 upgrade_main_savepoint(true, 2010033102.09);
3018 if ($oldversion < 2010033102.10) {
3019 // Now populate the role_context_levels table with the default values
3020 // NOTE: do not use accesslib methods here
3022 $rolecontextlevels = array();
3023 $defaults = array('manager' => array(CONTEXT_SYSTEM, CONTEXT_COURSECAT, CONTEXT_COURSE),
3024 'coursecreator' => array(CONTEXT_SYSTEM, CONTEXT_COURSECAT),
3025 'editingteacher' => array(CONTEXT_COURSE, CONTEXT_MODULE),
3026 'teacher' => array(CONTEXT_COURSE, CONTEXT_MODULE),
3027 'student' => array(CONTEXT_COURSE, CONTEXT_MODULE),
3030 'frontpage' => array());
3032 $roles = $DB->get_records('role', array(), '', 'id, archetype');
3033 foreach ($roles as $role) {
3034 if (isset($defaults[$role->archetype])) {
3035 $rolecontextlevels[$role->id] = $defaults[$role->archetype];
3039 // add roles without archetypes, it may contain weird things, but we can not fix them
3040 list($narsql, $params) = $DB->get_in_or_equal(array_keys($defaults), SQL_PARAMS_NAMED, 'ar', false);
3041 $sql = "SELECT DISTINCT ra.roleid, con.contextlevel
3042 FROM {role_assignments} ra
3043 JOIN {context} con ON ra.contextid = con.id
3044 JOIN {role} r ON r.id = ra.roleid
3045 WHERE r.archetype $narsql";
3046 $existingrolecontextlevels = $DB->get_recordset_sql($sql, $params);
3047 foreach ($existingrolecontextlevels as $rcl) {
3048 if (!isset($rolecontextlevels[$rcl->roleid])) {
3049 $rolecontextlevels[$rcl->roleid] = array();
3051 $rolecontextlevels[$rcl->roleid][] = $rcl->contextlevel;
3053 $existingrolecontextlevels->close();
3055 // Put the data into the database.
3056 $rcl = new stdClass();
3057 foreach ($rolecontextlevels as $roleid => $contextlevels) {
3058 $rcl->roleid = $roleid;
3059 foreach ($contextlevels as $level) {
3060 $rcl->contextlevel = $level;
3061 $DB->insert_record('role_context_levels', $rcl, false);
3069 unset($existingrolecontextlevels);
3070 unset($rolecontextlevels);
3072 // Main savepoint reached
3073 upgrade_main_savepoint(true, 2010033102.10);
3076 if ($oldversion < 2010040700) {
3077 // migrate old groupings --> groupmembersonly setting
3078 if (isset($CFG->enablegroupings)) {
3079 set_config('enablegroupmembersonly', $CFG->enablegroupings);
3080 unset_config('enablegroupings');
3083 // Main savepoint reached
3084 upgrade_main_savepoint(true, 2010040700);
3087 if ($oldversion < 2010040900) {
3089 // Changing the default of field lang on table user to good old "en"
3090 $table = new xmldb_table('user');
3091 $field = new xmldb_field('lang', XMLDB_TYPE_CHAR, '30', null, XMLDB_NOTNULL, null, 'en', 'country');
3093 // Launch change of default for field lang
3094 $dbman->change_field_default($table, $field);
3096 // update main site lang
3097 if (strpos($CFG->lang, '_utf8') !== false) {
3098 $lang = str_replace('_utf8', '', $CFG->lang);
3099 set_config('lang', $lang);
3103 if (!empty($CFG->langlist)) {
3104 $langs = explode(',', $CFG->langlist);
3105 foreach ($langs as $key=>$lang) {
3106 $lang = str_replace('_utf8', '', $lang);
3107 $langs[$key] = $lang;
3109 set_config('langlist', implode(',', $langs));
3112 // Main savepoint reached
3113 upgrade_main_savepoint(true, 2010040900);
3116 if ($oldversion < 2010040901) {
3118 // Remove "_utf8" suffix from all langs in user table
3119 $langs = $DB->get_records_sql("SELECT DISTINCT lang FROM {user} WHERE lang LIKE ?", array('%_utf8'));
3121 foreach ($langs as $lang=>$unused) {
3122 $newlang = str_replace('_utf8', '', $lang);
3123 $sql = "UPDATE {user} SET lang = :newlang WHERE lang = :lang";
3124 $DB->execute($sql, array('newlang'=>$newlang, 'lang'=>$lang));
3127 // Main savepoint reached
3128 upgrade_main_savepoint(true, 2010040901);
3131 if ($oldversion < 2010041301) {
3132 $sql = "UPDATE {block} SET name=? WHERE name=?";
3133 $DB->execute($sql, array('navigation', 'global_navigation_tree'));
3134 $DB->execute($sql, array('settings', 'settings_navigation_tree'));
3136 $sql = "UPDATE {block_instances} SET blockname=? WHERE blockname=?";
3137 $DB->execute($sql, array('navigation', 'global_navigation_tree'));
3138 $DB->execute($sql, array('settings', 'settings_navigation_tree'));
3139 upgrade_main_savepoint(true, 2010041301);
3142 if ($oldversion < 2010042100) {
3144 /// Define table backup_controllers to be created
3145 $table = new xmldb_table('backup_controllers');
3147 /// Adding fields to table backup_controllers
3148 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
3149 $table->add_field('backupid', XMLDB_TYPE_CHAR, '32', null, XMLDB_NOTNULL, null, null);
3150 $table->add_field('type', XMLDB_TYPE_CHAR, '6', null, XMLDB_NOTNULL, null, null);
3151 $table->add_field('itemid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3152 $table->add_field('format', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, null);
3153 $table->add_field('interactive', XMLDB_TYPE_INTEGER, '4', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3154 $table->add_field('purpose', XMLDB_TYPE_INTEGER, '4', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3155 $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3156 $table->add_field('status', XMLDB_TYPE_INTEGER, '4', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3157 $table->add_field('execution', XMLDB_TYPE_INTEGER, '4', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3158 $table->add_field('executiontime', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3159 $table->add_field('checksum', XMLDB_TYPE_CHAR, '32', null, XMLDB_NOTNULL, null, null);
3160 $table->add_field('timecreated', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3161 $table->add_field('timemodified', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3162 $table->add_field('controller', XMLDB_TYPE_TEXT, 'big', null, XMLDB_NOTNULL, null, null);
3164 /// Adding keys to table backup_controllers
3165 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
3166 $table->add_key('backupid_uk', XMLDB_KEY_UNIQUE, array('backupid'));
3167 $table->add_key('userid_fk', XMLDB_KEY_FOREIGN, array('userid'), 'user', array('id'));
3169 /// Adding indexes to table backup_controllers
3170 $table->add_index('typeitem_ix', XMLDB_INDEX_NOTUNIQUE, array('type', 'itemid'));
3172 /// Conditionally launch create table for backup_controllers
3173 if (!$dbman->table_exists($table)) {
3174 $dbman->create_table($table);
3177 /// Define table backup_ids_template to be created
3178 $table = new xmldb_table('backup_ids_template');
3180 /// Adding fields to table backup_ids_template
3181 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
3182 $table->add_field('backupid', XMLDB_TYPE_CHAR, '32', null, XMLDB_NOTNULL, null, null);
3183 $table->add_field('itemname', XMLDB_TYPE_CHAR, '30', null, XMLDB_NOTNULL, null, null);
3184 $table->add_field('itemid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3185 $table->add_field('parentitemid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
3187 /// Adding keys to table backup_ids_template
3188 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
3189 $table->add_key('backupid_itemname_itemid_uk', XMLDB_KEY_UNIQUE, array('backupid', 'itemname', 'itemid'));
3191 /// Adding indexes to table backup_ids_template
3192 $table->add_index('backupid_parentitemid_ix', XMLDB_INDEX_NOTUNIQUE, array('backupid', 'itemname', 'parentitemid'));
3194 /// Conditionally launch create table for backup_controllers
3195 if (!$dbman->table_exists($table)) {
3196 $dbman->create_table($table);
3199 /// Main savepoint reached
3200 upgrade_main_savepoint(true, 2010042100);
3203 if ($oldversion < 2010042301) {
3205 $table = new xmldb_table('course_sections');
3206 $field = new xmldb_field('name', XMLDB_TYPE_CHAR, '255', null, null, null, null, 'section');
3208 if (!$dbman->field_exists($table, $field)) {
3209 $dbman->add_field($table, $field);
3212 upgrade_main_savepoint(true, 2010042301);
3215 if ($oldversion < 2010042302) {
3216 // Define table cohort to be created
3217 $table = new xmldb_table('cohort');
3219 // Adding fields to table cohort
3220 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
3221 $table->add_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3222 $table->add_field('name', XMLDB_TYPE_CHAR, '254', null, XMLDB_NOTNULL, null, null);
3223 $table->add_field('idnumber', XMLDB_TYPE_CHAR, '100', null, null, null, null);
3224 $table->add_field('description', XMLDB_TYPE_TEXT, 'small', null, null, null, null);
3225 $table->add_field('descriptionformat', XMLDB_TYPE_INTEGER, '2', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3226 $table->add_field('component', XMLDB_TYPE_CHAR, '100', null, XMLDB_NOTNULL, null, null);
3227 $table->add_field('timecreated', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3228 $table->add_field('timemodified', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3230 // Adding keys to table cohort
3231 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
3232 $table->add_key('context', XMLDB_KEY_FOREIGN, array('contextid'), 'context', array('id'));
3234 // Conditionally launch create table for cohort
3235 if (!$dbman->table_exists($table)) {
3236 $dbman->create_table($table);
3239 upgrade_main_savepoint(true, 2010042302);
3242 if ($oldversion < 2010042303) {
3243 // Define table cohort_members to be created
3244 $table = new xmldb_table('cohort_members');
3246 // Adding fields to table cohort_members
3247 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
3248 $table->add_field('cohortid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
3249 $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
3250 $table->add_field('timeadded', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
3252 // Adding keys to table cohort_members
3253 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
3254 $table->add_key('cohortid', XMLDB_KEY_FOREIGN, array('cohortid'), 'cohort', array('id'));
3255 $table->add_key('userid', XMLDB_KEY_FOREIGN, array('userid'), 'user', array('id'));
3257 // Adding indexes to table cohort_members
3258 $table->add_index('cohortid-userid', XMLDB_INDEX_UNIQUE, array('cohortid', 'userid'));
3260 // Conditionally launch create table for cohort_members
3261 if (!$dbman->table_exists($table)) {
3262 $dbman->create_table($table);
3265 // Main savepoint reached
3266 upgrade_main_savepoint(true, 2010042303);
3269 if ($oldversion < 2010042800) {
3270 //drop the previously created ratings table
3271 $table = new xmldb_table('ratings');
3272 if ($dbman->table_exists($table)) {
3273 $dbman->drop_table($table);
3276 //create the rating table (replaces module specific rating implementations)
3277 $table = new xmldb_table('rating');
3278 if ($dbman->table_exists($table)) {
3279 $dbman->drop_table($table);
3282 /// Adding fields to table rating
3283 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
3284 $table->add_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3286 $table->add_field('itemid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3287 $table->add_field('scaleid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, null);
3288 $table->add_field('rating', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3289 $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3291 $table->add_field('timecreated', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3292 $table->add_field('timemodified', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3294 /// Adding keys to table rating
3295 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
3296 $table->add_key('contextid', XMLDB_KEY_FOREIGN, array('contextid'), 'context', array('id'));
3297 $table->add_key('userid', XMLDB_KEY_FOREIGN, array('userid'), 'user', array('id'));
3299 /// Adding indexes to table rating
3300 $table->add_index('itemid', XMLDB_INDEX_NOTUNIQUE, array('itemid'));
3302 /// Create table for ratings
3303 if (!$dbman->table_exists($table)) {
3304 $dbman->create_table($table);
3307 upgrade_main_savepoint(true, 2010042800);
3310 if ($oldversion < 2010042801) {
3311 // migrating old comments block content
3312 $DB->execute("UPDATE {comments}
3313 SET contextid = (SELECT parentcontextid
3314 FROM {block_instances}
3315 WHERE id = {comments}.itemid AND blockname = 'comments'),
3316 commentarea = 'page_comments',
3318 WHERE commentarea = 'block_comments'
3320 AND EXISTS (SELECT 'x'
3321 FROM {block_instances}
3322 WHERE id = {comments}.itemid
3323 AND blockname = 'comments')");
3325 // remove all orphaned record
3326 $DB->delete_records('comments', array('commentarea'=>'block_comments'));
3327 upgrade_main_savepoint(true, 2010042801);
3330 if ($oldversion < 2010042802) { // Change backup_controllers->type to varchar10 (recreate dep. index)
3332 /// Define index typeitem_ix (not unique) to be dropped form backup_controllers
3333 $table = new xmldb_table('backup_controllers');
3334 $index = new xmldb_index('typeitem_ix', XMLDB_INDEX_NOTUNIQUE, array('type', 'itemid'));
3336 /// Conditionally launch drop index typeitem_ix
3337 if ($dbman->index_exists($table, $index)) {
3338 $dbman->drop_index($table, $index);
3341 /// Changing precision of field type on table backup_controllers to (10)
3342 $table = new xmldb_table('backup_controllers');
3343 $field = new xmldb_field('type', XMLDB_TYPE_CHAR, '10', null, XMLDB_NOTNULL, null, null, 'backupid');
3345 /// Launch change of precision for field type
3346 $dbman->change_field_precision($table, $field);
3348 /// Define index typeitem_ix (not unique) to be added to backup_controllers
3349 $table = new xmldb_table('backup_controllers');
3350 $index = new xmldb_index('typeitem_ix', XMLDB_INDEX_NOTUNIQUE, array('type', 'itemid'));
3352 /// Conditionally launch add index typeitem_ix
3353 if (!$dbman->index_exists($table, $index)) {
3354 $dbman->add_index($table, $index);
3357 /// Main savepoint reached
3358 upgrade_main_savepoint(true, 2010042802);
3361 if ($oldversion < 2010043000) { // Adding new course completion feature
3363 /// Add course completion tables
3364 /// Define table course_completion_aggr_methd to be created
3365 $table = new xmldb_table('course_completion_aggr_methd');
3367 /// Adding fields to table course_completion_aggr_methd
3368 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
3369 $table->add_field('course', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
3370 $table->add_field('criteriatype', XMLDB_TYPE_INTEGER, '20', XMLDB_UNSIGNED, null, null, null);
3371 $table->add_field('method', XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
3372 $table->add_field('value', XMLDB_TYPE_NUMBER, '10, 5', null, null, null, null);
3374 /// Adding keys to table course_completion_aggr_methd
3375 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
3377 /// Adding indexes to table course_completion_aggr_methd
3378 $table->add_index('course', XMLDB_INDEX_NOTUNIQUE, array('course'));
3379 $table->add_index('criteriatype', XMLDB_INDEX_NOTUNIQUE, array('criteriatype'));
3381 /// Conditionally launch create table for course_completion_aggr_methd
3382 if (!$dbman->table_exists($table)) {
3383 $dbman->create_table($table);
3387 /// Define table course_completion_criteria to be created
3388 $table = new xmldb_table('course_completion_criteria');
3390 /// Adding fields to table course_completion_criteria
3391 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
3392 $table->add_field('course', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
3393 $table->add_field('criteriatype', XMLDB_TYPE_INTEGER, '20', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
3394 $table->add_field('module', XMLDB_TYPE_CHAR, '100', null, null, null, null);
3395 $table->add_field('moduleinstance', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
3396 $table->add_field('courseinstance', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
3397 $table->add_field('enrolperiod', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
3398 $table->add_field('timeend', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
3399 $table->add_field('gradepass', XMLDB_TYPE_NUMBER, '10, 5', null, null, null, null);
3400 $table->add_field('role', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
3402 /// Adding keys to table course_completion_criteria
3403 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
3405 /// Adding indexes to table course_completion_criteria
3406 $table->add_index('course', XMLDB_INDEX_NOTUNIQUE, array('course')