MDL-20306 Add course_category idnumber field: version bump and fix missing add_field...
[moodle.git] / lib / db / upgrade.php
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
18 /**
19  * This file keeps track of upgrades to Moodle.
20  *
21  * Sometimes, changes between versions involve
22  * alterations to database structures and other
23  * major things that may break installations.
24  *
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.
28  *
29  * If there's something it cannot do itself, it
30  * will tell you what you need to do.
31  *
32  * The commands in here will all be database-neutral,
33  * using the methods of database_manager class
34  *
35  * Please do not forget to use upgrade_set_timeout()
36  * before any action that may take longer time to finish.
37  *
38  * @package    core
39  * @subpackage admin
40  * @copyright  2006 onwards Martin Dougiamas  http://dougiamas.com
41  * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
42  */
44 defined('MOODLE_INTERNAL') || die();
46 /**
47  *
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
54  */
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);
97     }
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);
124     }
126     if ($oldversion < 2008030602) {
127         @unlink($CFG->cachedir.'/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";
133             } else {
134                 $oldlang = "$CFG->dataroot/lang";
135             }
136         } else {
137             $oldlang = '';
138         }
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);
148     }
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);
160         }
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);
171     }
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);
177     }
179     if ($oldversion < 2008050200) {
180         // remove unused config options
181         unset_config('statsrolesupgraded');
182         upgrade_main_savepoint(true, 2008050200);
183     }
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);
192     }
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");
202         }
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);
211         }
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);
226     }
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);
233     }
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');
240         // add field
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);
245         }
246         // modify index
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);
251         }
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);
256         }
258         /// Main savepoint reached
259         upgrade_main_savepoint(true, 2008063001);
260     }
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);
265     }
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);
284         }
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);
304         }
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);
324         }
326     /// Main savepoint reached
327         upgrade_main_savepoint(true, 2008070701);
328     }
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);
343     /// fields to rename
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);
369     /// fields to rename
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);
389     /// new table
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);
399     }
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);
411         }
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);
421         }
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);
430         }
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);
439         }
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);
448         }
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);
471         }
473         /// Main savepoint reached
474         upgrade_main_savepoint(true, 2008072800);
475     }
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);
502         }
504     /// Main savepoint reached
505         upgrade_main_savepoint(true, 2008073000);
506     }
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);
513         }
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);
534     }
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);
575     }
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);
589     }
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);
596     }
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);
603     }
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'));
614         }
616         /// Main savepoint reached
617         upgrade_main_savepoint(true, 2008080400);
618     }
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);
640         }
642     /// Main savepoint reached
643         upgrade_main_savepoint(true, 2008080500);
644     }
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);
652     }
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);
659     }
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);
666     }
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);
673     }
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);
680     }
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);
687     }
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);
694     }
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);
703     }
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);
713         }
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);
730         }
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);
753         }
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);
770         }
772     /// Main savepoint reached
773         upgrade_main_savepoint(true, 2008082602);
774     }
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);
787         }
789     /// Main savepoint reached
790         upgrade_main_savepoint(true, 2008082700);
791     }
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);
804     }
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') {
810                 continue;
811             }
812             $pluginname = substr($name, 0, strlen($name) - 8);
813             if (!strpos($pluginname, '_')) {
814                 // Skip things like backup_version that don't contain an extra _
815                 continue;
816             }
817             if ($pluginname == 'enrol_ldap_version') {
818                 // Special case - this is something different from a plugin version number.
819                 continue;
820             }
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).
824                 continue;
825             }
826             set_config('version', $value, $pluginname);
827             unset_config($name);
828         }
829         upgrade_main_savepoint(true, 2008091000);
830     }
832     if ($oldversion < 2008092300) {
833         unset_config('editorspelling');
834         unset_config('editordictionary');
835     /// Main savepoint reached
836         upgrade_main_savepoint(true, 2008092300);
837     }
839     if ($oldversion < 2008101300) {
841         if (!get_config(NULL, 'statsruntimedays')) {
842             set_config('statsruntimedays', '31');
843         }
845     /// Main savepoint reached
846         upgrade_main_savepoint(true, 2008101300);
847     }
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);
857         }
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);
863         }
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);
869         }
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);
875         }
877     /// Main savepoint reached
878         upgrade_main_savepoint(true, 2008111200);
879     }
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);
891         }
893     /// Main savepoint reached
894         upgrade_main_savepoint(true, 2008111800);
895     }
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);
907         }
909     /// Main savepoint reached
910         upgrade_main_savepoint(true, 2008111801);
911     }
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);
925         }
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);
936         }
938     /// Main savepoint reached
939         upgrade_main_savepoint(true, 2008120700);
940     }
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);
953     }
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);
964         }
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);
972         }
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);
980         }
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);
1003         }
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);
1011     }
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);
1019     }
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);
1030         }
1032     /// Main savepoint reached
1033         upgrade_main_savepoint(true, 2009010600);
1034     }
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);
1047     }
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);
1060     }
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);
1073     }
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);
1086     }
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);
1100     }
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);
1110     }
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');
1117         }
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);
1127     }
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);
1155     }
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);
1165         }
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);
1173         }
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);
1204     }
1206     if ($oldversion < 2009021800) {
1207         // Converting format of grade conditions, if any exist, to percentages.
1208         $DB->execute("
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");
1215         $DB->execute("
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);
1225     }
1227     /// Add default sort order for question types.
1228     if ($oldversion < 2009030300) {
1229         set_config('multichoice_sortorder', 1, 'question');
1230         set_config('truefalse_sortorder', 2, 'question');
1231         set_config('shortanswer_sortorder', 3, 'question');
1232         set_config('numerical_sortorder', 4, 'question');
1233         set_config('calculated_sortorder', 5, 'question');
1234         set_config('essay_sortorder', 6, 'question');
1235         set_config('match_sortorder', 7, 'question');
1236         set_config('randomsamatch_sortorder', 8, 'question');
1237         set_config('multianswer_sortorder', 9, 'question');
1238         set_config('description_sortorder', 10, 'question');
1239         set_config('random_sortorder', 11, 'question');
1240         set_config('missingtype_sortorder', 12, 'question');
1242         upgrade_main_savepoint(true, 2009030300);
1243     }
1245     /// MDL-18132 replace the use a new Role allow switch settings page, instead of
1246     /// $CFG->allowuserswitchrolestheycantassign
1247     if ($oldversion < 2009032000) {
1248     /// First create the new table.
1249             $table = new xmldb_table('role_allow_switch');
1251     /// Adding fields to table role_allow_switch
1252         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
1253         $table->add_field('roleid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
1254         $table->add_field('allowswitch', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
1256     /// Adding keys to table role_allow_switch
1257         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
1258         $table->add_key('roleid', XMLDB_KEY_FOREIGN, array('roleid'), 'role', array('id'));
1259         $table->add_key('allowswitch', XMLDB_KEY_FOREIGN, array('allowswitch'), 'role', array('id'));
1261     /// Adding indexes to table role_allow_switch
1262         $table->add_index('roleid-allowoverride', XMLDB_INDEX_UNIQUE, array('roleid', 'allowswitch'));
1264     /// Conditionally launch create table for role_allow_switch
1265         if (!$dbman->table_exists($table)) {
1266             $dbman->create_table($table);
1267         }
1269     /// Main savepoint reached
1270         upgrade_main_savepoint(true, 2009032000);
1271     }
1273     if ($oldversion < 2009032001) {
1274     /// Copy from role_allow_assign into the new table.
1275         $DB->execute('INSERT INTO {role_allow_switch} (roleid, allowswitch)
1276                 SELECT roleid, allowassign FROM {role_allow_assign}');
1278     /// Unset the config variable used in 1.9.
1279         unset_config('allowuserswitchrolestheycantassign');
1281     /// Main savepoint reached
1282         upgrade_main_savepoint(true, 2009032001);
1283     }
1285     if ($oldversion < 2009040300) {
1287     /// Define table filter_active to be created
1288         $table = new xmldb_table('filter_active');
1290     /// Adding fields to table filter_active
1291         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
1292         $table->add_field('filter', XMLDB_TYPE_CHAR, '32', null, XMLDB_NOTNULL, null, null);
1293         $table->add_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
1294         $table->add_field('active', XMLDB_TYPE_INTEGER, '4', null, XMLDB_NOTNULL, null, null);
1295         $table->add_field('sortorder', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0');
1297     /// Adding keys to table filter_active
1298         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
1299         $table->add_key('contextid', XMLDB_KEY_FOREIGN, array('contextid'), 'context', array('id'));
1301     /// Adding indexes to table filter_active
1302         $table->add_index('contextid-filter', XMLDB_INDEX_UNIQUE, array('contextid', 'filter'));
1304     /// Conditionally launch create table for filter_active
1305         if (!$dbman->table_exists($table)) {
1306             $dbman->create_table($table);
1307         }
1309     /// Main savepoint reached
1310         upgrade_main_savepoint(true, 2009040300);
1311     }
1313     if ($oldversion < 2009040301) {
1315     /// Define table filter_config to be created
1316         $table = new xmldb_table('filter_config');
1318     /// Adding fields to table filter_config
1319         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
1320         $table->add_field('filter', XMLDB_TYPE_CHAR, '32', null, XMLDB_NOTNULL, null, null);
1321         $table->add_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
1322         $table->add_field('name', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
1323         $table->add_field('value', XMLDB_TYPE_TEXT, 'small', null, null, null, null);
1325     /// Adding keys to table filter_config
1326         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
1327         $table->add_key('contextid', XMLDB_KEY_FOREIGN, array('contextid'), 'context', array('id'));
1329     /// Adding indexes to table filter_config
1330         $table->add_index('contextid-filter-name', XMLDB_INDEX_UNIQUE, array('contextid', 'filter', 'name'));
1332     /// Conditionally launch create table for filter_config
1333         if (!$dbman->table_exists($table)) {
1334             $dbman->create_table($table);
1335         }
1337     /// Main savepoint reached
1338         upgrade_main_savepoint(true, 2009040301);
1339     }
1341     if ($oldversion < 2009040302) {
1342     /// Transfer current settings from $CFG->textfilters
1343         $disabledfilters = filter_get_all_installed();
1344         if (empty($CFG->textfilters)) {
1345             $activefilters = array();
1346         } else {
1347             $activefilters = explode(',', $CFG->textfilters);
1348         }
1349         $syscontext = get_context_instance(CONTEXT_SYSTEM);
1350         $sortorder = 1;
1351         foreach ($activefilters as $filter) {
1352             filter_set_global_state($filter, TEXTFILTER_ON, $sortorder);
1353             $sortorder += 1;
1354             unset($disabledfilters[$filter]);
1355         }
1356         foreach ($disabledfilters as $filter => $notused) {
1357             filter_set_global_state($filter, TEXTFILTER_DISABLED, $sortorder);
1358             $sortorder += 1;
1359         }
1361     /// Main savepoint reached
1362         upgrade_main_savepoint(true, 2009040302);
1363     }
1365     if ($oldversion < 2009040600) {
1366     /// Ensure that $CFG->stringfilters is set.
1367         if (empty($CFG->stringfilters)) {
1368             if (!empty($CFG->filterall)) {
1369                 set_config('stringfilters', $CFG->textfilters);
1370             } else {
1371                 set_config('stringfilters', '');
1372             }
1373         }
1375         set_config('filterall', !empty($CFG->stringfilters));
1376         unset_config('textfilters');
1378     /// Main savepoint reached
1379         upgrade_main_savepoint(true, 2009040600);
1380     }
1382     if ($oldversion < 2009041700) {
1383     /// To ensure the UI remains consistent with no behaviour change, any
1384     /// 'until' date in an activity condition should have 1 second subtracted
1385     /// (to go from 0:00 on the following day to 23:59 on the previous one).
1386         $DB->execute('UPDATE {course_modules} SET availableuntil = availableuntil - 1 WHERE availableuntil <> 0');
1387         require_once($CFG->dirroot . '/course/lib.php');
1388         rebuild_course_cache(0, true);
1390     /// Main savepoint reached
1391         upgrade_main_savepoint(true, 2009041700);
1392     }
1394     if ($oldversion < 2009042600) {
1395     /// Deleting orphaned messages from deleted users.
1396         require_once($CFG->dirroot.'/message/lib.php');
1397     /// Detect deleted users with messages sent(useridfrom) and not read
1398         if ($deletedusers = $DB->get_records_sql('SELECT DISTINCT u.id
1399                                                     FROM {user} u
1400                                                     JOIN {message} m ON m.useridfrom = u.id
1401                                                    WHERE u.deleted = ?', array(1))) {
1402             foreach ($deletedusers as $deleteduser) {
1403                 message_move_userfrom_unread2read($deleteduser->id); // move messages
1404             }
1405         }
1406     /// Main savepoint reached
1407         upgrade_main_savepoint(true, 2009042600);
1408     }
1410     /// Dropping all enums/check contraints from core. MDL-18577
1411     if ($oldversion < 2009042700) {
1413     /// Changing list of values (enum) of field stattype on table stats_daily to none
1414         $table = new xmldb_table('stats_daily');
1415         $field = new xmldb_field('stattype', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, 'activity', 'roleid');
1417     /// Launch change of list of values for field stattype
1418         $dbman->drop_enum_from_field($table, $field);
1420     /// Changing list of values (enum) of field stattype on table stats_weekly to none
1421         $table = new xmldb_table('stats_weekly');
1422         $field = new xmldb_field('stattype', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, 'activity', 'roleid');
1424     /// Launch change of list of values for field stattype
1425         $dbman->drop_enum_from_field($table, $field);
1427     /// Changing list of values (enum) of field stattype on table stats_monthly to none
1428         $table = new xmldb_table('stats_monthly');
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 publishstate on table post to none
1435         $table = new xmldb_table('post');
1436         $field = new xmldb_field('publishstate', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, 'draft', 'attachment');
1438     /// Launch change of list of values for field publishstate
1439         $dbman->drop_enum_from_field($table, $field);
1441     /// Main savepoint reached
1442         upgrade_main_savepoint(true, 2009042700);
1443     }
1445     if ($oldversion < 2009043000) {
1446         unset_config('grade_report_showgroups');
1447         upgrade_main_savepoint(true, 2009043000);
1448     }
1450     if ($oldversion < 2009050600) {
1451     /// Site front page blocks need to be moved due to page name change.
1452         $DB->set_field('block_instance', 'pagetype', 'site-index', array('pagetype' => 'course-view', 'pageid' => SITEID));
1454     /// Main savepoint reached
1455         upgrade_main_savepoint(true, 2009050600);
1456     }
1458     if ($oldversion < 2009050601) {
1460     /// Define table block_instance to be renamed to block_instances
1461         $table = new xmldb_table('block_instance');
1463     /// Launch rename table for block_instance
1464         $dbman->rename_table($table, 'block_instances');
1466     /// Main savepoint reached
1467         upgrade_main_savepoint(true, 2009050601);
1468     }
1470     if ($oldversion < 2009050602) {
1472     /// Define table block_instance to be renamed to block_instance_old
1473         $table = new xmldb_table('block_pinned');
1475     /// Launch rename table for block_instance
1476         $dbman->rename_table($table, 'block_pinned_old');
1478     /// Main savepoint reached
1479         upgrade_main_savepoint(true, 2009050602);
1480     }
1482     if ($oldversion < 2009050603) {
1484     /// Define table block_instance_old to be created
1485         $table = new xmldb_table('block_instance_old');
1487     /// Adding fields to table block_instance_old
1488         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
1489         $table->add_field('oldid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
1490         $table->add_field('blockid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
1491         $table->add_field('pageid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
1492         $table->add_field('pagetype', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, null);
1493         $table->add_field('position', XMLDB_TYPE_CHAR, '10', null, XMLDB_NOTNULL, null, null);
1494         $table->add_field('weight', XMLDB_TYPE_INTEGER, '3', null, XMLDB_NOTNULL, null, '0');
1495         $table->add_field('visible', XMLDB_TYPE_INTEGER, '1', null, XMLDB_NOTNULL, null, '0');
1496         $table->add_field('configdata', XMLDB_TYPE_TEXT, 'small', null, null, null, null);
1498     /// Adding keys to table block_instance_old
1499         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
1500         $table->add_key('blockid', XMLDB_KEY_FOREIGN, array('blockid'), 'block', array('id'));
1502     /// Adding indexes to table block_instance_old
1503         $table->add_index('pageid', XMLDB_INDEX_NOTUNIQUE, array('pageid'));
1504         $table->add_index('pagetype', XMLDB_INDEX_NOTUNIQUE, array('pagetype'));
1506     /// Conditionally launch create table for block_instance_old
1507         if (!$dbman->table_exists($table)) {
1508             $dbman->create_table($table);
1509         }
1511     /// Main savepoint reached
1512         upgrade_main_savepoint(true, 2009050603);
1513     }
1515     if ($oldversion < 2009050604) {
1516     /// Copy current blocks data from block_instances to block_instance_old
1517         $DB->execute('INSERT INTO {block_instance_old} (oldid, blockid, pageid, pagetype, position, weight, visible, configdata)
1518             SELECT id, blockid, pageid, pagetype, position, weight, visible, configdata FROM {block_instances} ORDER BY id');
1520         upgrade_main_savepoint(true, 2009050604);
1521     }
1523     if ($oldversion < 2009050605) {
1525     /// Define field multiple to be dropped from block
1526         $table = new xmldb_table('block');
1527         $field = new xmldb_field('multiple');
1529     /// Conditionally launch drop field multiple
1530         if ($dbman->field_exists($table, $field)) {
1531             $dbman->drop_field($table, $field);
1532         }
1534     /// Main savepoint reached
1535         upgrade_main_savepoint(true, 2009050605);
1536     }
1538     if ($oldversion < 2009050606) {
1539         $table = new xmldb_table('block_instances');
1541     /// Rename field weight on table block_instances to defaultweight
1542         $field = new xmldb_field('weight', XMLDB_TYPE_INTEGER, 10, null, XMLDB_NOTNULL, null, null, 'position');
1543         $dbman->rename_field($table, $field, 'defaultweight');
1545     /// Rename field position on table block_instances to defaultregion
1546         $field = new xmldb_field('position', XMLDB_TYPE_CHAR, '10', null, XMLDB_NOTNULL, null, null, 'pagetype');
1547         $dbman->rename_field($table, $field, 'defaultregion');
1549         /// Main savepoint reached
1550         upgrade_main_savepoint(true, 2009050606);
1551     }
1553     if ($oldversion < 2009050607) {
1554     /// Changing precision of field defaultregion on table block_instances to (16)
1555         $table = new xmldb_table('block_instances');
1556         $field = new xmldb_field('defaultregion', XMLDB_TYPE_CHAR, '16', null, XMLDB_NOTNULL, null, null, 'pagetype');
1558     /// Launch change of precision for field defaultregion
1559         $dbman->change_field_precision($table, $field);
1561     /// Main savepoint reached
1562         upgrade_main_savepoint(true, 2009050607);
1563     }
1565     if ($oldversion < 2009050608) {
1566     /// Change regions to the new notation
1567         $DB->set_field('block_instances', 'defaultregion', 'side-pre', array('defaultregion' => 'l'));
1568         $DB->set_field('block_instances', 'defaultregion', 'side-post', array('defaultregion' => 'r'));
1569         $DB->set_field('block_instances', 'defaultregion', 'course-view-top', array('defaultregion' => 'c'));
1570         // This third one is a custom value from contrib/patches/center_blocks_position_patch and the
1571         // flex page course format. Hopefully this new value is an adequate alternative.
1573     /// Main savepoint reached
1574         upgrade_main_savepoint(true, 2009050608);
1575     }
1577     if ($oldversion < 2009050609) {
1579     /// Define key blockname (unique) to be added to block
1580         $table = new xmldb_table('block');
1581         $key = new xmldb_key('blockname', XMLDB_KEY_UNIQUE, array('name'));
1583     /// Launch add key blockname
1584         $dbman->add_key($table, $key);
1586     /// Main savepoint reached
1587         upgrade_main_savepoint(true, 2009050609);
1588     }
1590     if ($oldversion < 2009050610) {
1591         $table = new xmldb_table('block_instances');
1593     /// Define field blockname to be added to block_instances
1594         $field = new xmldb_field('blockname', XMLDB_TYPE_CHAR, '40', null, null, null, null, 'blockid');
1595         if (!$dbman->field_exists($table, $field)) {
1596             $dbman->add_field($table, $field);
1597         }
1599     /// Define field contextid to be added to block_instances
1600         $field = new xmldb_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null, 'blockname');
1601         if (!$dbman->field_exists($table, $field)) {
1602             $dbman->add_field($table, $field);
1603         }
1605     /// Define field showinsubcontexts to be added to block_instances
1606         $field = new xmldb_field('showinsubcontexts', XMLDB_TYPE_INTEGER, '4', null, null, null, null, 'contextid');
1607         if (!$dbman->field_exists($table, $field)) {
1608             $dbman->add_field($table, $field);
1609         }
1611     /// Define field subpagepattern to be added to block_instances
1612         $field = new xmldb_field('subpagepattern', XMLDB_TYPE_CHAR, '16', null, null, null, null, 'pagetype');
1613         if (!$dbman->field_exists($table, $field)) {
1614             $dbman->add_field($table, $field);
1615         }
1617     /// Main savepoint reached
1618         upgrade_main_savepoint(true, 2009050610);
1619     }
1621     if ($oldversion < 2009050611) {
1622         $table = new xmldb_table('block_instances');
1624     /// Fill in blockname from blockid
1625         $DB->execute("UPDATE {block_instances} SET blockname = (SELECT name FROM {block} WHERE id = blockid)");
1627     /// Set showinsubcontexts = 0 for all rows.
1628         $DB->execute("UPDATE {block_instances} SET showinsubcontexts = 0");
1630     /// Main savepoint reached
1631         upgrade_main_savepoint(true, 2009050611);
1632     }
1634     if ($oldversion < 2009050612) {
1636     /// Rename field pagetype on table block_instances to pagetypepattern
1637         $table = new xmldb_table('block_instances');
1638         $field = new xmldb_field('pagetype', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, null, 'pageid');
1640     /// Launch rename field pagetype
1641         $dbman->rename_field($table, $field, 'pagetypepattern');
1643     /// Main savepoint reached
1644         upgrade_main_savepoint(true, 2009050612);
1645     }
1647     if ($oldversion < 2009050613) {
1648     /// fill in contextid and subpage, and update pagetypepattern from pagetype and pageid
1650     /// site-index
1651         $frontpagecontext = get_context_instance(CONTEXT_COURSE, SITEID);
1652         $DB->execute("UPDATE {block_instances} SET contextid = " . $frontpagecontext->id . ",
1653                                                    pagetypepattern = 'site-index',
1654                                                    subpagepattern = NULL
1655                       WHERE pagetypepattern = 'site-index'");
1657     /// course-view
1658         $DB->execute("UPDATE {block_instances} SET
1659                         contextid = (
1660                             SELECT {context}.id
1661                             FROM {context}
1662                             JOIN {course} ON instanceid = {course}.id AND contextlevel = " . CONTEXT_COURSE . "
1663                             WHERE {course}.id = pageid
1664                         ),
1665                        pagetypepattern = 'course-view-*',
1666                        subpagepattern = NULL
1667                       WHERE pagetypepattern = 'course-view'");
1669     /// admin
1670         $syscontext = get_context_instance(CONTEXT_SYSTEM);
1671         $DB->execute("UPDATE {block_instances} SET
1672                         contextid = " . $syscontext->id . ",
1673                         pagetypepattern = 'admin-*',
1674                         subpagepattern = NULL
1675                       WHERE pagetypepattern = 'admin'");
1677     /// my-index
1678         $DB->execute("UPDATE {block_instances} SET
1679                         contextid = (
1680                             SELECT {context}.id
1681                             FROM {context}
1682                             JOIN {user} ON instanceid = {user}.id AND contextlevel = " . CONTEXT_USER . "
1683                             WHERE {user}.id = pageid
1684                         ),
1685                         pagetypepattern = 'my-index',
1686                         subpagepattern = NULL
1687                       WHERE pagetypepattern = 'my-index'");
1689     /// tag-index
1690         $DB->execute("UPDATE {block_instances} SET
1691                         contextid = " . $syscontext->id . ",
1692                         pagetypepattern = 'tag-index',
1693                         subpagepattern = pageid
1694                       WHERE pagetypepattern = 'tag-index'");
1696     /// blog-view
1697         $DB->execute("UPDATE {block_instances} SET
1698                         contextid = (
1699                             SELECT {context}.id
1700                             FROM {context}
1701                             JOIN {user} ON instanceid = {user}.id AND contextlevel = " . CONTEXT_USER . "
1702                             WHERE {user}.id = pageid
1703                         ),
1704                         pagetypepattern = 'blog-index',
1705                         subpagepattern = NULL
1706                       WHERE pagetypepattern = 'blog-view'");
1708     /// mod-xxx-view
1709         $moduleswithblocks = array('chat', 'data', 'lesson', 'quiz', 'dimdim', 'game', 'wiki', 'oublog');
1710         foreach ($moduleswithblocks as $modname) {
1711             if (!$dbman->table_exists($modname)) {
1712                 continue;
1713             }
1714             $DB->execute("UPDATE {block_instances} SET
1715                             contextid = (
1716                                 SELECT {context}.id
1717                                 FROM {context}
1718                                 JOIN {course_modules} ON instanceid = {course_modules}.id AND contextlevel = " . CONTEXT_MODULE . "
1719                                 JOIN {modules} ON {modules}.id = {course_modules}.module AND {modules}.name = '$modname'
1720                                 JOIN {{$modname}} ON {course_modules}.instance = {{$modname}}.id
1721                                 WHERE {{$modname}}.id = pageid
1722                             ),
1723                             pagetypepattern = 'blog-index',
1724                             subpagepattern = NULL
1725                           WHERE pagetypepattern = 'blog-view'");
1726         }
1728     /// Main savepoint reached
1729         upgrade_main_savepoint(true, 2009050613);
1730     }
1732     if ($oldversion < 2009050614) {
1733     /// fill in any missing contextids with a dummy value, so we can add the not-null constraint.
1734         $DB->execute("UPDATE {block_instances} SET contextid = 0 WHERE contextid IS NULL");
1736     /// Main savepoint reached
1737         upgrade_main_savepoint(true, 2009050614);
1738     }
1740     if ($oldversion < 2009050615) {
1741         $table = new xmldb_table('block_instances');
1743     /// Arrived here, any block_instances record without blockname is one
1744     /// orphan block coming from 1.9. Just delete them. MDL-22503
1745         $DB->delete_records_select('block_instances', 'blockname IS NULL');
1747     /// Changing nullability of field blockname on table block_instances to not null
1748         $field = new xmldb_field('blockname', XMLDB_TYPE_CHAR, '40', null, XMLDB_NOTNULL, null, null, 'id');
1749         $dbman->change_field_notnull($table, $field);
1751     /// Changing nullability of field contextid on table block_instances to not null
1752         $field = new xmldb_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null, 'blockname');
1753         $dbman->change_field_notnull($table, $field);
1755     /// Changing nullability of field showinsubcontexts on table block_instances to not null
1756         $field = new xmldb_field('showinsubcontexts', XMLDB_TYPE_INTEGER, '4', null, XMLDB_NOTNULL, null, null, 'contextid');
1757         $dbman->change_field_notnull($table, $field);
1759     /// Main savepoint reached
1760         upgrade_main_savepoint(true, 2009050615);
1761     }
1763     if ($oldversion < 2009050616) {
1764     /// Add exiting sticky blocks.
1765         $blocks = $DB->get_records('block');
1766         $syscontext = get_context_instance(CONTEXT_SYSTEM);
1767         $newregions = array(
1768             'l' => 'side-pre',
1769             'r' => 'side-post',
1770             'c' => 'course-view-top',
1771         );
1772         $stickyblocks = $DB->get_recordset('block_pinned_old');
1773         foreach ($stickyblocks as $stickyblock) {
1774             // Only if the block exists (avoid orphaned sticky blocks)
1775             if (!isset($blocks[$stickyblock->blockid]) || empty($blocks[$stickyblock->blockid]->name)) {
1776                 continue;
1777             }
1778             $newblock = new stdClass();
1779             $newblock->blockname = $blocks[$stickyblock->blockid]->name;
1780             $newblock->contextid = $syscontext->id;
1781             $newblock->showinsubcontexts = 1;
1782             switch ($stickyblock->pagetype) {
1783                 case 'course-view':
1784                     $newblock->pagetypepattern = 'course-view-*';
1785                     break;
1786                 default:
1787                     $newblock->pagetypepattern = $stickyblock->pagetype;
1788             }
1789             $newblock->defaultregion = $newregions[$stickyblock->position];
1790             $newblock->defaultweight = $stickyblock->weight;
1791             $newblock->configdata = $stickyblock->configdata;
1792             $newblock->visible = 1;
1793             $DB->insert_record('block_instances', $newblock);
1794         }
1796     /// Main savepoint reached
1797         upgrade_main_savepoint(true, 2009050616);
1798     }
1800     if ($oldversion < 2009050617) {
1802     /// Define table block_positions to be created
1803         $table = new xmldb_table('block_positions');
1805     /// Adding fields to table block_positions
1806         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
1807         $table->add_field('blockinstanceid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
1808         $table->add_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
1809         $table->add_field('pagetype', XMLDB_TYPE_CHAR, '64', null, XMLDB_NOTNULL, null, null);
1810         $table->add_field('subpage', XMLDB_TYPE_CHAR, '16', null, XMLDB_NOTNULL, null, null);
1811         $table->add_field('visible', XMLDB_TYPE_INTEGER, '4', null, XMLDB_NOTNULL, null, null);
1812         $table->add_field('region', XMLDB_TYPE_CHAR, '16', null, XMLDB_NOTNULL, null, null);
1813         $table->add_field('weight', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, null);
1815     /// Adding keys to table block_positions
1816         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
1817         $table->add_key('blockinstanceid', XMLDB_KEY_FOREIGN, array('blockinstanceid'), 'block_instances', array('id'));
1818         $table->add_key('contextid', XMLDB_KEY_FOREIGN, array('contextid'), 'context', array('id'));
1820     /// Adding indexes to table block_positions
1821         $table->add_index('blockinstanceid-contextid-pagetype-subpage', XMLDB_INDEX_UNIQUE, array('blockinstanceid', 'contextid', 'pagetype', 'subpage'));
1823     /// Conditionally launch create table for block_positions
1824         if (!$dbman->table_exists($table)) {
1825             $dbman->create_table($table);
1826         }
1828     /// Main savepoint reached
1829         upgrade_main_savepoint(true, 2009050617);
1830     }
1832     if ($oldversion < 2009050618) {
1833     /// And block instances with visible = 0, copy that information to block_positions
1834         $DB->execute("INSERT INTO {block_positions} (blockinstanceid, contextid, pagetype, subpage, visible, region, weight)
1835                 SELECT bi.id, bi.contextid,
1836                        CASE WHEN bi.pagetypepattern = 'course-view-*'
1837                            THEN (SELECT " . $DB->sql_concat("'course-view-'", 'c.format') . "
1838                                    FROM {course} c
1839                                    JOIN {context} ctx ON c.id = ctx.instanceid
1840                                   WHERE ctx.id = bi.contextid)
1841                            ELSE bi.pagetypepattern END,
1842                        CASE WHEN bi.subpagepattern IS NULL
1843                            THEN '" . $DB->sql_empty() . "'
1844                            ELSE bi.subpagepattern END,
1845                        0, bi.defaultregion, bi.defaultweight
1846                   FROM {block_instances} bi
1847                  WHERE bi.visible = 0 AND bi.pagetypepattern <> 'admin-*' AND bi.pagetypepattern IS NOT NULL");
1848         // note: MDL-25031 all block instances should have a pagetype pattern, NULL is not allowed,
1849         //       if we manage to find out how NULLs get there we should fix them before this step
1851     /// Main savepoint reached
1852         upgrade_main_savepoint(true, 2009050618);
1853     }
1855     if ($oldversion < 2009050619) {
1856         $table = new xmldb_table('block_instances');
1858     /// Define field blockid to be dropped from block_instances
1859         $field = new xmldb_field('blockid');
1860         if ($dbman->field_exists($table, $field)) {
1861         /// Before dropping the field, drop dependent indexes
1862             $index = new xmldb_index('blockid', XMLDB_INDEX_NOTUNIQUE, array('blockid'));
1863             if ($dbman->index_exists($table, $index)) {
1864             /// Launch drop index blockid
1865                 $dbman->drop_index($table, $index);
1866             }
1867             $dbman->drop_field($table, $field);
1868         }
1870     /// Define field pageid to be dropped from block_instances
1871         $field = new xmldb_field('pageid');
1872         if ($dbman->field_exists($table, $field)) {
1873         /// Before dropping the field, drop dependent indexes
1874             $index = new xmldb_index('pageid', XMLDB_INDEX_NOTUNIQUE, array('pageid'));
1875             if ($dbman->index_exists($table, $index)) {
1876             /// Launch drop index pageid
1877                 $dbman->drop_index($table, $index);
1878             }
1879             $dbman->drop_field($table, $field);
1880         }
1882     /// Define field visible to be dropped from block_instances
1883         $field = new xmldb_field('visible');
1884         if ($dbman->field_exists($table, $field)) {
1885             $dbman->drop_field($table, $field);
1886         }
1888     /// Main savepoint reached
1889         upgrade_main_savepoint(true, 2009050619);
1890     }
1892     if ($oldversion < 2009051200) {
1893     /// Let's check the status of mandatory mnet_host records, fixing them
1894     /// and moving "orphan" users to default localhost record. MDL-16879
1895         echo $OUTPUT->notification('Fixing mnet records, this may take a while...', 'notifysuccess');
1896         upgrade_fix_incorrect_mnethostids();
1898     /// Main savepoint reached
1899         upgrade_main_savepoint(true, 2009051200);
1900     }
1903     if ($oldversion < 2009051700) {
1904     /// migrate editor settings
1905         if (empty($CFG->htmleditor)) {
1906             set_config('texteditors', 'textarea');
1907         } else {
1908             set_config('texteditors', 'tinymce,textarea');
1909         }
1911         unset_config('htmleditor');
1912         unset_config('defaulthtmleditor');
1914     /// Main savepoint reached
1915         upgrade_main_savepoint(true, 2009051700);
1916     }
1918     /// Repeat 2009050607 upgrade step, which Petr commented out because of XMLDB
1919     /// stupidity, so lots of people will have missed.
1920     if ($oldversion < 2009061600) {
1921     /// Changing precision of field defaultregion on table block_instances to (16)
1922         $table = new xmldb_table('block_instances');
1923         $field = new xmldb_field('defaultregion', XMLDB_TYPE_CHAR, '16', null, XMLDB_NOTNULL, null, null, 'configdata');
1925     /// Launch change of precision for field defaultregion
1926         $dbman->change_field_precision($table, $field);
1928     /// Main savepoint reached
1929         upgrade_main_savepoint(true, 2009061600);
1930     }
1932     if ($oldversion < 2009061702) {
1933         // standardizing plugin names
1934         if ($configs = $DB->get_records_select('config_plugins', "plugin LIKE 'quizreport_%'")) {
1935             foreach ($configs as $config) {
1936                 unset_config($config->name, $config->plugin); /// unset old config
1937                 $config->plugin = str_replace('quizreport_', 'quiz_', $config->plugin);
1938                 set_config($config->name, $config->value, $config->plugin); /// set new config
1939             }
1940         }
1941         unset($configs);
1942         upgrade_main_savepoint(true, 2009061702);
1943     }
1945     if ($oldversion < 2009061703) {
1946         // standardizing plugin names
1947         if ($configs = $DB->get_records_select('config_plugins', "plugin LIKE 'assignment_type_%'")) {
1948             foreach ($configs as $config) {
1949                 unset_config($config->name, $config->plugin); /// unset old config
1950                 $config->plugin = str_replace('assignment_type_', 'assignment_', $config->plugin);
1951                 set_config($config->name, $config->value, $config->plugin); /// set new config
1952             }
1953         }
1954         unset($configs);
1955         upgrade_main_savepoint(true, 2009061703);
1956     }
1958     if ($oldversion < 2009061704) {
1959         // change component string in capability records to new "_" format
1960         if ($caps = $DB->get_records('capabilities')) {
1961             foreach ($caps as $cap) {
1962                 $cap->component = str_replace('/', '_', $cap->component);
1963                 $DB->update_record('capabilities', $cap);
1964             }
1965         }
1966         unset($caps);
1967         upgrade_main_savepoint(true, 2009061704);
1968     }
1970     if ($oldversion < 2009063000) {
1971         // upgrade format of _with_advanced settings - quiz only
1972         // note: this can be removed later, not needed for upgrades from 1.9.x
1973         if ($quiz = get_config('quiz')) {
1974             foreach ($quiz as $name=>$value) {
1975                 if (strpos($name, 'fix_') !== 0) {
1976                     continue;
1977                 }
1978                 $newname = substr($name,4).'_adv';
1979                 set_config($newname, $value, 'quiz');
1980                 unset_config($name, 'quiz');
1981             }
1982         }
1983         upgrade_main_savepoint(true, 2009063000);
1984     }
1986     if ($oldversion < 2009071000) {
1988     /// Rename field contextid on table block_instances to parentcontextid
1989         $table = new xmldb_table('block_instances');
1990         $field = new xmldb_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null, 'blockname');
1992     /// Launch rename field parentcontextid
1993         $dbman->rename_field($table, $field, 'parentcontextid');
1995     /// Main savepoint reached
1996         upgrade_main_savepoint(true, 2009071000);
1997     }
1999     if ($oldversion < 2009071600) {
2001     /// Define field summaryformat to be added to post
2002         $table = new xmldb_table('post');
2003         $field = new xmldb_field('summaryformat', XMLDB_TYPE_INTEGER, '2', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', 'format');
2005     /// Conditionally launch add field summaryformat
2006         if (!$dbman->field_exists($table, $field)) {
2007             $dbman->add_field($table, $field);
2008         }
2010     /// Main savepoint reached
2011         upgrade_main_savepoint(true, 2009071600);
2012     }
2014     if ($oldversion < 2009072400) {
2016     /// Define table comments to be created
2017         $table = new xmldb_table('comments');
2019     /// Adding fields to table comments
2020         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2021         $table->add_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2022         $table->add_field('commentarea', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
2023         $table->add_field('itemid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2024         $table->add_field('content', XMLDB_TYPE_TEXT, 'small', null, XMLDB_NOTNULL, null, null);
2025         $table->add_field('format', XMLDB_TYPE_INTEGER, '2', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
2026         $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2027         $table->add_field('timecreated', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2029     /// Adding keys to table comments
2030         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2032     /// Conditionally launch create table for comments
2033         if (!$dbman->table_exists($table)) {
2034             $dbman->create_table($table);
2035         }
2037     /// Main savepoint reached
2038         upgrade_main_savepoint(true, 2009072400);
2039     }
2041     /**
2042      * This upgrade is to set up the new navigation blocks that have been developed
2043      * as part of Moodle 2.0
2044      * Now I [Sam Hemelryk] hit a conundrum while exploring how to go about this
2045      * as not only do we want to install the new blocks but we also want to set up
2046      * default instances of them, and at the same time remove instances of the blocks
2047      * that were/will-be outmoded by the two new navigation blocks.
2048      * After talking it through with Tim Hunt {@link http://moodle.org/mod/cvsadmin/view.php?conversationid=3112}
2049      * we decided that the best way to go about this was to put the bulk of the
2050      * upgrade operation into core upgrade `here` but to let the plugins block
2051      * still install the blocks.
2052      * This leaves one hairy end in that we will create block_instances within the
2053      * DB before the blocks themselves are created within the DB
2054      */
2055     if ($oldversion < 2009082800) {
2057         echo $OUTPUT->notification(get_string('navigationupgrade', 'admin'));
2059         // Get the system context so we can set the block instances to it
2060         $syscontext = get_context_instance(CONTEXT_SYSTEM);
2062         // An array to contain the new block instances we will create
2063         $newblockinstances = array('globalnavigation'=>new stdClass,'settingsnavigation'=>new stdClass);
2064         // The new global navigation block instance as a stdClass
2065         $newblockinstances['globalnavigation']->blockname = 'global_navigation_tree';
2066         $newblockinstances['globalnavigation']->parentcontextid = $syscontext->id; // System context
2067         $newblockinstances['globalnavigation']->showinsubcontexts = true; // Show absolutely everywhere
2068         $newblockinstances['globalnavigation']->pagetypepattern = '*'; // Thats right everywhere
2069         $newblockinstances['globalnavigation']->subpagetypepattern = null;
2070         $newblockinstances['globalnavigation']->defaultregion = BLOCK_POS_LEFT;
2071         $newblockinstances['globalnavigation']->defaultweight = -10; // Try make this first
2072         $newblockinstances['globalnavigation']->configdata = '';
2073         // The new settings navigation block instance as a stdClass
2074         $newblockinstances['settingsnavigation']->blockname = 'settings_navigation_tree';
2075         $newblockinstances['settingsnavigation']->parentcontextid = $syscontext->id;
2076         $newblockinstances['settingsnavigation']->showinsubcontexts = true;
2077         $newblockinstances['settingsnavigation']->pagetypepattern = '*';
2078         $newblockinstances['settingsnavigation']->subpagetypepattern = null;
2079         $newblockinstances['settingsnavigation']->defaultregion = BLOCK_POS_LEFT;
2080         $newblockinstances['settingsnavigation']->defaultweight = -9; // Try make this second
2081         $newblockinstances['settingsnavigation']->configdata = '';
2083         // Blocks that are outmoded and for whom the bells will toll... by which I
2084         // mean we will delete all instances of
2085         $outmodedblocks = array('participants','admin_tree','activity_modules','admin','course_list');
2086         $outmodedblocksstring = '\''.join('\',\'',$outmodedblocks).'\'';
2087         unset($outmodedblocks);
2088         // Retrieve the block instance id's and parent contexts, so we can join them an GREATLY
2089         // cut down the number of delete queries we will need to run
2090         $allblockinstances = $DB->get_recordset_select('block_instances', 'blockname IN ('.$outmodedblocksstring.')', array(), '', 'id, parentcontextid');
2092         $contextids = array();
2093         $instanceids = array();
2094         // Iterate through all block instances
2095         foreach ($allblockinstances as $blockinstance) {
2096             if (!in_array($blockinstance->parentcontextid, $contextids)) {
2097                 $contextids[] = $blockinstance->parentcontextid;
2099                 // If we have over 1000 contexts clean them up and reset the array
2100                 // this ensures we don't hit any nasty memory limits or such
2101                 if (count($contextids) > 1000) {
2102                     upgrade_cleanup_unwanted_block_contexts($contextids);
2103                     $contextids = array();
2104                 }
2105             }
2106             if (!in_array($blockinstance->id, $instanceids)) {
2107                 $instanceids[] = $blockinstance->id;
2108                 // If we have more than 1000 block instances now remove all block positions
2109                 // and empty the array
2110                 if (count($instanceids) > 1000) {
2111                     $instanceidstring = join(',',$instanceids);
2112                     $DB->delete_records_select('block_positions', 'blockinstanceid IN ('.$instanceidstring.')');
2113                     $instanceids = array();
2114                 }
2115             }
2116         }
2118         upgrade_cleanup_unwanted_block_contexts($contextids);
2120         if ($instanceids) {
2121             $instanceidstring = join(',',$instanceids);
2122             $DB->delete_records_select('block_positions', 'blockinstanceid IN ('.$instanceidstring.')');
2123         }
2125         unset($allblockinstances);
2126         unset($contextids);
2127         unset($instanceids);
2128         unset($instanceidstring);
2130         // Now remove the actual block instance
2131         $DB->delete_records_select('block_instances', 'blockname IN ('.$outmodedblocksstring.')');
2132         unset($outmodedblocksstring);
2134         // Insert the new block instances. Remember they have not been installed yet
2135         // however this should not be a problem
2136         foreach ($newblockinstances as $blockinstance) {
2137             $blockinstance->id= $DB->insert_record('block_instances', $blockinstance);
2138             // Ensure the block context is created.
2139             get_context_instance(CONTEXT_BLOCK, $blockinstance->id);
2140         }
2141         unset($newblockinstances);
2143         upgrade_main_savepoint(true, 2009082800);
2144         // The end of the navigation upgrade
2145     }
2147     if ($oldversion < 2009100602) {
2148     /// Define table external_functions to be created
2149         $table = new xmldb_table('external_functions');
2151     /// Adding fields to table external_functions
2152         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2153         $table->add_field('name', XMLDB_TYPE_CHAR, '200', null, XMLDB_NOTNULL, null, null);
2154         $table->add_field('classname', XMLDB_TYPE_CHAR, '100', null, XMLDB_NOTNULL, null, null);
2155         $table->add_field('methodname', XMLDB_TYPE_CHAR, '100', null, XMLDB_NOTNULL, null, null);
2156         $table->add_field('classpath', XMLDB_TYPE_CHAR, '255', null, null, null, null);
2157         $table->add_field('component', XMLDB_TYPE_CHAR, '100', null, XMLDB_NOTNULL, null, null);
2159     /// Adding keys to table external_functions
2160         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2162     /// Adding indexes to table external_functions
2163         $table->add_index('name', XMLDB_INDEX_UNIQUE, array('name'));
2165     /// Launch create table for external_functions
2166         $dbman->create_table($table);
2168     /// Main savepoint reached
2169         upgrade_main_savepoint(true, 2009100602);
2170     }
2172     if ($oldversion < 2009100603) {
2173         /// Define table external_services to be created
2174         $table = new xmldb_table('external_services');
2176     /// Adding fields to table external_services
2177         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2178         $table->add_field('name', XMLDB_TYPE_CHAR, '200', null, XMLDB_NOTNULL, null, null);
2179         $table->add_field('enabled', XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2180         $table->add_field('requiredcapability', XMLDB_TYPE_CHAR, '150', null, null, null, null);
2181         $table->add_field('restrictedusers', XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2182         $table->add_field('component', XMLDB_TYPE_CHAR, '100', null, null, null, null);
2183         $table->add_field('timecreated', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2184         $table->add_field('timemodified', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
2186     /// Adding keys to table external_services
2187         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2189     /// Adding indexes to table external_services
2190         $table->add_index('name', XMLDB_INDEX_UNIQUE, array('name'));
2192     /// Launch create table for external_services
2193         $dbman->create_table($table);
2195     /// Main savepoint reached
2196         upgrade_main_savepoint(true, 2009100603);
2197     }
2199     if ($oldversion < 2009100604) {
2200     /// Define table external_services_functions to be created
2201         $table = new xmldb_table('external_services_functions');
2203     /// Adding fields to table external_services_functions
2204         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2205         $table->add_field('externalserviceid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2206         $table->add_field('functionname', XMLDB_TYPE_CHAR, '200', null, XMLDB_NOTNULL, null, null);
2208     /// Adding keys to table external_services_functions
2209         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2210         $table->add_key('externalserviceid', XMLDB_KEY_FOREIGN, array('externalserviceid'), 'external_services', array('id'));
2212     /// Launch create table for external_services_functions
2213         $dbman->create_table($table);
2215     /// Main savepoint reached
2216         upgrade_main_savepoint(true, 2009100604);
2217     }
2219     if ($oldversion < 2009100605) {
2220     /// Define table external_services_users to be created
2221         $table = new xmldb_table('external_services_users');
2223     /// Adding fields to table external_services_users
2224         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2225         $table->add_field('externalserviceid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2226         $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2227         $table->add_field('iprestriction', XMLDB_TYPE_CHAR, '255', null, null, null, null);
2228         $table->add_field('validuntil', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
2229         $table->add_field('timecreated', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
2231     /// Adding keys to table external_services_users
2232         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2233         $table->add_key('externalserviceid', XMLDB_KEY_FOREIGN, array('externalserviceid'), 'external_services', array('id'));
2234         $table->add_key('userid', XMLDB_KEY_FOREIGN, array('userid'), 'user', array('id'));
2236     /// Launch create table for external_services_users
2237         $dbman->create_table($table);
2239     /// Main savepoint reached
2240         upgrade_main_savepoint(true, 2009100605);
2241     }
2243     if ($oldversion < 2009102600) {
2245     /// Define table external_tokens to be created
2246         $table = new xmldb_table('external_tokens');
2248     /// Adding fields to table external_tokens
2249         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2250         $table->add_field('token', XMLDB_TYPE_CHAR, '128', null, XMLDB_NOTNULL, null, null);
2251         $table->add_field('tokentype', XMLDB_TYPE_INTEGER, '4', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2252         $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2253         $table->add_field('externalserviceid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2254         $table->add_field('sid', XMLDB_TYPE_CHAR, '128', null, null, null, null);
2255         $table->add_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2256         $table->add_field('creatorid', XMLDB_TYPE_INTEGER, '20', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '1');
2257         $table->add_field('iprestriction', XMLDB_TYPE_CHAR, '255', null, null, null, null);
2258         $table->add_field('validuntil', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
2259         $table->add_field('timecreated', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2260         $table->add_field('lastaccess', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
2262     /// Adding keys to table external_tokens
2263         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2264         $table->add_key('userid', XMLDB_KEY_FOREIGN, array('userid'), 'user', array('id'));
2265         $table->add_key('externalserviceid', XMLDB_KEY_FOREIGN, array('externalserviceid'), 'external_services', array('id'));
2266         $table->add_key('contextid', XMLDB_KEY_FOREIGN, array('contextid'), 'context', array('id'));
2267         $table->add_key('creatorid', XMLDB_KEY_FOREIGN, array('creatorid'), 'user', array('id'));
2269     /// Launch create table for external_tokens
2270         $dbman->create_table($table);
2272     /// Main savepoint reached
2273         upgrade_main_savepoint(true, 2009102600);
2274     }
2276    if ($oldversion < 2009103000) {
2278     /// Define table blog_association to be created
2279         $table = new xmldb_table('blog_association');
2281     /// Adding fields to table blog_association
2282         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2283         $table->add_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2284         $table->add_field('blogid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2286     /// Adding keys to table blog_association
2287         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2288         $table->add_key('contextid', XMLDB_KEY_FOREIGN, array('contextid'), 'context', array('id'));
2289         $table->add_key('blogid', XMLDB_KEY_FOREIGN, array('blogid'), 'post', array('id'));
2291     /// Conditionally launch create table for blog_association
2292         if (!$dbman->table_exists($table)) {
2293             $dbman->create_table($table);
2294         }
2296 /// Define table blog_external to be created
2297         $table = new xmldb_table('blog_external');
2299     /// Adding fields to table blog_external
2300         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2301         $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2302         $table->add_field('name', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
2303         $table->add_field('description', XMLDB_TYPE_TEXT, 'small', null, null, null, null);
2304         $table->add_field('url', XMLDB_TYPE_TEXT, 'small', null, XMLDB_NOTNULL, null, null);
2305         $table->add_field('filtertags', XMLDB_TYPE_CHAR, '255', null, null, null, null);
2306         $table->add_field('failedlastsync', XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
2307         $table->add_field('timemodified', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
2308         $table->add_field('timefetched', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
2310     /// Adding keys to table blog_external
2311         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2312         $table->add_key('userid', XMLDB_KEY_FOREIGN, array('userid'), 'user', array('id'));
2314     /// Conditionally launch create table for blog_external
2315         if ($dbman->table_exists($table)) {
2316             // Delete the existing one first (comes from early dev version)
2317             $dbman->drop_table($table);
2318         }
2319         $dbman->create_table($table);
2321        // upgrade notice is now in admin/tool/bloglevelupgrade/
2323     /// Main savepoint reached
2324         upgrade_main_savepoint(true, 2009103000);
2325     }
2327     if ($oldversion < 2009110400) {
2328         // list of tables where we need to add new format field and convert texts
2329         $extendtables = array('course'              => 'summary',
2330                               'course_categories'   => 'description',
2331                               'course_categories'   => 'description',
2332                               'course_request'      => 'summary',
2333                               'grade_outcomes'      => 'description',
2334                               'groups'              => 'description',
2335                               'groupings'           => 'description',
2336                               'scale'               => 'description',
2337                               'user_info_field'     => 'description',
2338                               'user_info_field'     => 'defaultdata',
2339                               'user_info_data'      => 'data');
2341         foreach ($extendtables as $tablestr => $fieldstr) {
2342             $formatfieldstr = $fieldstr.'format';
2344             $table = new xmldb_table($tablestr);
2345             $field = new xmldb_field($formatfieldstr, XMLDB_TYPE_INTEGER, '2', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', $fieldstr);
2346             // Check that the field doesn't already exists
2347             if (!$dbman->field_exists($table, $field)) {
2348                 // Add the new field
2349                 $dbman->add_field($table, $field);
2350             }
2351             if ($CFG->texteditors !== 'textarea') {
2352                 $rs = $DB->get_recordset($tablestr, array($formatfieldstr => FORMAT_MOODLE), '', "id,$fieldstr,$formatfieldstr");
2353                 foreach ($rs as $rec) {
2354                     $rec->$fieldstr       = text_to_html($rec->$fieldstr, false, false, true);
2355                     $rec->$formatfieldstr = FORMAT_HTML;
2356                     $DB->update_record($tablestr, $rec);
2357                     upgrade_set_timeout();
2358                 }
2359                 $rs->close();
2360                 unset($rs);
2361             }
2362         }
2364         unset($rec);
2365         unset($extendtables);
2367         upgrade_main_savepoint(true, 2009110400);
2368     }
2370     if ($oldversion < 2009110401) {
2371         $table = new xmldb_table('user');
2373         // Change the precision of the description field first up.
2374         // This may grow!
2375         $field = new xmldb_field('description', XMLDB_TYPE_TEXT, 'big', null, null, null, null, 'url');
2376         $dbman->change_field_precision($table, $field);
2378         $field = new xmldb_field('descriptionformat', XMLDB_TYPE_INTEGER, '2', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', 'description');
2379         // Check that the field doesn't already exists
2380         if (!$dbman->field_exists($table, $field)) {
2381             // Add the new field
2382             $dbman->add_field($table, $field);
2383         }
2384         if ($CFG->texteditors !== 'textarea') {
2385             $rs = $DB->get_recordset('user', array('descriptionformat'=>FORMAT_MOODLE, 'deleted'=>0, 'htmleditor'=>1), '', "id,description,descriptionformat");
2386             foreach ($rs as $rec) {
2387                 $rec->description       = text_to_html($rec->description, false, false, true);
2388                 $rec->descriptionformat = FORMAT_HTML;
2389                 $DB->update_record('user', $rec);
2390                 upgrade_set_timeout();
2391             }
2392             $rs->close();
2393         }
2395         upgrade_main_savepoint(true, 2009110401);
2396     }
2398     if ($oldversion < 2009112400) {
2399         if (empty($CFG->passwordsaltmain)) {
2400             $subject = get_string('check_passwordsaltmain_name', 'report_security');
2401             $description = get_string('check_passwordsaltmain_warning', 'report_security');;
2402             upgrade_log(UPGRADE_LOG_NOTICE, null, $subject, $description);
2403         }
2404         upgrade_main_savepoint(true, 2009112400);
2405     }
2407     if ($oldversion < 2010011200) {
2408         $table = new xmldb_table('grade_categories');
2409         $field = new xmldb_field('hidden', XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, 0, 'timemodified');
2411         if (!$dbman->field_exists($table, $field)) {
2412             $dbman->add_field($table, $field);
2413         }
2415         upgrade_main_savepoint(true, 2010011200);
2416     }
2418     if ($oldversion < 2010012500) {
2419         upgrade_fix_incorrect_mnethostids();
2420         upgrade_main_savepoint(true, 2010012500);
2421     }
2423     if ($oldversion < 2010012600) {
2424         // do stuff to the mnet table
2425         $table = new xmldb_table('mnet_rpc');
2427         $field = new xmldb_field('parent_type', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, null, 'xmlrpc_path');
2428         $dbman->rename_field($table, $field, 'plugintype');
2430         $field = new xmldb_field('parent', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, null, 'xmlrpc_path');
2431         $dbman->rename_field($table, $field, 'pluginname');
2433         $field = new xmldb_field('filename', XMLDB_TYPE_CHAR, '100', null, XMLDB_NOTNULL, null, null, 'profile');
2434         if (!$dbman->field_exists($table, $field)) {
2435             $dbman->add_field($table, $field);
2436         }
2438         $field = new xmldb_field('classname', XMLDB_TYPE_CHAR, '150', null, null, null, null, 'filename');
2439         if (!$dbman->field_exists($table, $field)) {
2440             $dbman->add_field($table, $field);
2441         }
2443         $field = new xmldb_field('static', XMLDB_TYPE_INTEGER, '1', null, null, null, null, 'classname');
2444         if (!$dbman->field_exists($table, $field)) {
2445             $dbman->add_field($table, $field);
2446         }
2448     /// Main savepoint reached
2449         upgrade_main_savepoint(true, 2010012600);
2450     }
2452     if ($oldversion < 2010012900) {
2454     /// Define table mnet_remote_rpc to be created
2455         $table = new xmldb_table('mnet_remote_rpc');
2457     /// Adding fields to table mnet_remote_rpc
2458         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2459         $table->add_field('functionname', XMLDB_TYPE_CHAR, '40', null, XMLDB_NOTNULL, null, null);
2460         $table->add_field('xmlrpcpath', XMLDB_TYPE_CHAR, '80', null, XMLDB_NOTNULL, null, null);
2462     /// Adding keys to table mnet_remote_rpc
2463         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2465     /// Conditionally launch create table for mnet_remote_rpc
2466         if (!$dbman->table_exists($table)) {
2467             $dbman->create_table($table);
2468         }
2471     /// Define table mnet_remote_service2rpc to be created
2472         $table = new xmldb_table('mnet_remote_service2rpc');
2474     /// Adding fields to table mnet_remote_service2rpc
2475         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2476         $table->add_field('serviceid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
2477         $table->add_field('rpcid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
2479     /// Adding keys to table mnet_remote_service2rpc
2480         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2482     /// Adding indexes to table mnet_remote_service2rpc
2483         $table->add_index('rpcid_serviceid', XMLDB_INDEX_UNIQUE, array('rpcid', 'serviceid'));
2485     /// Conditionally launch create table for mnet_remote_service2rpc
2486         if (!$dbman->table_exists($table)) {
2487             $dbman->create_table($table);
2488         }
2491     /// Rename field function_name on table mnet_rpc to functionname
2492         $table = new xmldb_table('mnet_rpc');
2493         $field = new xmldb_field('function_name', XMLDB_TYPE_CHAR, '40', null, XMLDB_NOTNULL, null, null, 'id');
2495     /// Launch rename field function_name
2496         $dbman->rename_field($table, $field, 'functionname');
2499     /// Rename field xmlrpc_path on table mnet_rpc to xmlrpcpath
2500         $table = new xmldb_table('mnet_rpc');
2501         $field = new xmldb_field('xmlrpc_path', XMLDB_TYPE_CHAR, '80', null, XMLDB_NOTNULL, null, null, 'function_name');
2503     /// Launch rename field xmlrpc_path
2504         $dbman->rename_field($table, $field, 'xmlrpcpath');
2507     /// Main savepoint reached
2508         upgrade_main_savepoint(true, 2010012900);
2509     }
2511     if ($oldversion < 2010012901) {
2513         /// Define field plugintype to be added to mnet_remote_rpc
2514         $table = new xmldb_table('mnet_remote_rpc');
2515         $field = new xmldb_field('plugintype', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, null, 'xmlrpcpath');
2517         /// Conditionally launch add field plugintype
2518         if (!$dbman->field_exists($table, $field)) {
2519             $dbman->add_field($table, $field);
2520         }
2522     /// Define field pluginname to be added to mnet_remote_rpc
2523         $field = new xmldb_field('pluginname', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, null, 'plugintype');
2525     /// Conditionally launch add field pluginname
2526         if (!$dbman->field_exists($table, $field)) {
2527             $dbman->add_field($table, $field);
2528         }
2530         /// Main savepoint reached
2531         upgrade_main_savepoint(true, 2010012901);
2532     }
2534     if ($oldversion < 2010012902) {
2536     /// Define field enabled to be added to mnet_remote_rpc
2537         $table = new xmldb_table('mnet_remote_rpc');
2538         $field = new xmldb_field('enabled', XMLDB_TYPE_INTEGER, '1', null, XMLDB_NOTNULL, null, null, 'pluginname');
2540     /// Conditionally launch add field enabled
2541         if (!$dbman->field_exists($table, $field)) {
2542             $dbman->add_field($table, $field);
2543         }
2545         /// Main savepoint reached
2546         upgrade_main_savepoint(true, 2010012902);
2547     }
2549     /// MDL-17863. Increase the portno column length on mnet_host to handle any port number
2550     if ($oldversion < 2010020100) {
2551     /// Changing precision of field portno on table mnet_host to (5)
2552         $table = new xmldb_table('mnet_host');
2553         $field = new xmldb_field('portno', XMLDB_TYPE_INTEGER, '5', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', 'transport');
2555     /// Launch change of precision for field portno
2556         $dbman->change_field_precision($table, $field);
2558         upgrade_main_savepoint(true, 2010020100);
2559     }
2561     if ($oldversion < 2010020300) {
2563     /// Define field timecreated to be added to user
2564         $table = new xmldb_table('user');
2565         $field = new xmldb_field('timecreated', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', 'trackforums');
2567         if (!$dbman->field_exists($table, $field)) {
2568         /// Launch add field timecreated
2569             $dbman->add_field($table, $field);
2571             $DB->execute("UPDATE {user} SET timecreated = firstaccess");
2573             $sql = "UPDATE {user} SET timecreated = " . time() ." where timecreated = 0";
2574             $DB->execute($sql);
2575         }
2576         upgrade_main_savepoint(true, 2010020300);
2577     }
2579     // MDL-21407. Trim leading spaces from default tex latexpreamble causing problems under some confs
2580     if ($oldversion < 2010020301) {
2581         if ($preamble = $CFG->filter_tex_latexpreamble) {
2582             $preamble = preg_replace('/^ +/m', '', $preamble);
2583             set_config('filter_tex_latexpreamble', $preamble);
2584         }
2585         upgrade_main_savepoint(true, 2010020301);
2586     }
2588     if ($oldversion < 2010021400) {
2589     /// Changes to modinfo mean we need to rebuild course cache
2590         require_once($CFG->dirroot . '/course/lib.php');
2591         rebuild_course_cache(0, true);
2592         upgrade_main_savepoint(true, 2010021400);
2593     }
2595     if ($oldversion < 2010021800) {
2596         $DB->set_field('mnet_application', 'sso_jump_url', '/auth/mnet/jump.php', array('name' => 'moodle'));
2597         upgrade_main_savepoint(true, 2010021800);
2598     }
2600     if ($oldversion < 2010031900) {
2601         // regeneration of sessions is always enabled, no need for this setting any more
2602         unset_config('regenloginsession');
2603         upgrade_main_savepoint(true, 2010031900);
2604     }
2606     if ($oldversion < 2010033101.02) {
2608     /// Define table license to be created
2609         $table = new xmldb_table('license');
2611     /// Adding fields to table license
2612         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2613         $table->add_field('shortname', XMLDB_TYPE_CHAR, '255', null, null, null, null);
2614         $table->add_field('fullname', XMLDB_TYPE_TEXT, 'small', null, null, null, null);
2615         $table->add_field('source', XMLDB_TYPE_CHAR, '255', null, null, null, null);
2616         $table->add_field('enabled', XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '1');
2617         $table->add_field('version', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0');
2619     /// Adding keys to table license
2620         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2622     /// Conditionally launch create table for license
2623         if (!$dbman->table_exists($table)) {
2624             $dbman->create_table($table);
2625         }
2626         $active_licenses = array();
2628         $license = new stdClass();
2630         // add unknown license
2631         $license->shortname = 'unknown';
2632         $license->fullname = 'Unknown license';
2633         $license->source = '';
2634         $license->enabled = 1;
2635         $license->version = '2010033100';
2636         $active_licenses[] = $license->shortname;
2637         if ($record = $DB->get_record('license', array('shortname'=>$license->shortname))) {
2638             if ($record->version < $license->version) {
2639                 // update license record
2640                 $license->enabled = $record->enabled;
2641                 $license->id = $record->id;
2642                 $DB->update_record('license', $license);
2643             }
2644         } else {
2645             $DB->insert_record('license', $license);
2646         }
2648         // add all rights reserved license
2649         $license->shortname = 'allrightsreserved';
2650         $license->fullname = 'All rights reserved';
2651         $license->source = 'http://en.wikipedia.org/wiki/All_rights_reserved';
2652         $license->enabled = 1;
2653         $license->version = '2010033100';
2654         $active_licenses[] = $license->shortname;
2655         if ($record = $DB->get_record('license', array('shortname'=>$license->shortname))) {
2656             if ($record->version < $license->version) {
2657                 // update license record
2658                 $license->id = $record->id;
2659                 $license->enabled = $record->enabled;
2660                 $DB->update_record('license', $license);
2661             }
2662         } else {
2663             $DB->insert_record('license', $license);
2664         }
2666         // add public domain license
2667         $license->shortname = 'public';
2668         $license->fullname = 'Public Domain';
2669         $license->source = 'http://creativecommons.org/licenses/publicdomain/';
2670         $license->enabled = 1;
2671         $license->version = '2010033100';
2672         $active_licenses[] = $license->shortname;
2673         if ($record = $DB->get_record('license', array('shortname'=>$license->shortname))) {
2674             if ($record->version < $license->version) {
2675                 // update license record
2676                 $license->enabled = $record->enabled;
2677                 $license->id = $record->id;
2678                 $DB->update_record('license', $license);
2679             }
2680         } else {
2681             $DB->insert_record('license', $license);
2682         }
2684         // add creative commons license
2685         $license->shortname = 'cc';
2686         $license->fullname = 'Creative Commons';
2687         $license->source = 'http://creativecommons.org/licenses/by/3.0/';
2688         $license->enabled = 1;
2689         $license->version = '2010033100';
2690         $active_licenses[] = $license->shortname;
2691         if ($record = $DB->get_record('license', array('shortname'=>$license->shortname))) {
2692             if ($record->version < $license->version) {
2693                 // update license record
2694                 $license->enabled = $record->enabled;
2695                 $license->id = $record->id;
2696                 $DB->update_record('license', $license);
2697             }
2698         } else {
2699             $DB->insert_record('license', $license);
2700         }
2702         // add creative commons no derivs license
2703         $license->shortname = 'cc-nd';
2704         $license->fullname = 'Creative Commons - NoDerivs';
2705         $license->source = 'http://creativecommons.org/licenses/by-nd/3.0/';
2706         $license->enabled = 1;
2707         $license->version = '2010033100';
2708         $active_licenses[] = $license->shortname;
2709         if ($record = $DB->get_record('license', array('shortname'=>$license->shortname))) {
2710             if ($record->version < $license->version) {
2711                 // update license record
2712                 $license->enabled = $record->enabled;
2713                 $license->id = $record->id;
2714                 $DB->update_record('license', $license);
2715             }
2716         } else {
2717             $DB->insert_record('license', $license);
2718         }
2720         // add creative commons no commercial no derivs license
2721         $license->shortname = 'cc-nc-nd';
2722         $license->fullname = 'Creative Commons - No Commercial NoDerivs';
2723         $license->source = 'http://creativecommons.org/licenses/by-nc-nd/3.0/';
2724         $license->enabled = 1;
2725         $license->version = '2010033100';
2726         $active_licenses[] = $license->shortname;
2727         if ($record = $DB->get_record('license', array('shortname'=>$license->shortname))) {
2728             if ($record->version < $license->version) {
2729                 // update license record
2730                 $license->enabled = $record->enabled;
2731                 $license->id = $record->id;
2732                 $DB->update_record('license', $license);
2733             }
2734         } else {
2735             $DB->insert_record('license', $license);
2736         }
2738         // add creative commons no commercial
2739         $license->shortname = 'cc-nc-nd';
2740         $license->shortname = 'cc-nc';
2741         $license->fullname = 'Creative Commons - No Commercial';
2742         $license->source = 'http://creativecommons.org/licenses/by-nd/3.0/';
2743         $license->enabled = 1;
2744         $license->version = '2010033100';
2745         $active_licenses[] = $license->shortname;
2746         if ($record = $DB->get_record('license', array('shortname'=>$license->shortname))) {
2747             if ($record->version < $license->version) {
2748                 // update license record
2749                 $license->enabled = $record->enabled;
2750                 $license->id = $record->id;
2751                 $DB->update_record('license', $license);
2752             }
2753         } else {
2754             $DB->insert_record('license', $license);
2755         }
2757         // add creative commons no commercial sharealike
2758         $license->shortname = 'cc-nc-sa';
2759         $license->fullname = 'Creative Commons - No Commercial ShareAlike';
2760         $license->source = 'http://creativecommons.org/licenses/by-nc-sa/3.0/';
2761         $license->enabled = 1;
2762         $license->version = '2010033100';
2763         $active_licenses[] = $license->shortname;
2764         if ($record = $DB->get_record('license', array('shortname'=>$license->shortname))) {
2765             if ($record->version < $license->version) {
2766                 // update license record
2767                 $license->enabled = $record->enabled;
2768                 $license->id = $record->id;
2769                 $DB->update_record('license', $license);
2770             }
2771         } else {
2772             $DB->insert_record('license', $license);
2773         }
2775         // add creative commons sharealike
2776         $license->shortname = 'cc-sa';
2777         $license->fullname = 'Creative Commons - ShareAlike';
2778         $license->source = 'http://creativecommons.org/licenses/by-sa/3.0/';
2779         $license->enabled = 1;
2780         $license->version = '2010033100';
2781         $active_licenses[] = $license->shortname;
2782         if ($record = $DB->get_record('license', array('shortname'=>$license->shortname))) {
2783             if ($record->version < $license->version) {
2784                 // update license record
2785                 $license->enabled = $record->enabled;
2786                 $license->id = $record->id;
2787                 $DB->update_record('license', $license);
2788             }
2789         } else {
2790             $DB->insert_record('license', $license);
2791         }
2793         set_config('licenses', implode(',', $active_licenses));
2794     /// set site default license
2795         set_config('sitedefaultlicense', 'allrightsreserved');
2797     /// Main savepoint reached
2798         upgrade_main_savepoint(true, 2010033101.02);
2799     }
2801     if ($oldversion < 2010033102.00) {
2802         // rename course view capability to participate
2803         $params = array('viewcap'=>'moodle/course:view', 'participatecap'=>'moodle/course:participate');
2804         $sql = "UPDATE {role_capabilities} SET capability = :participatecap WHERE capability = :viewcap";
2805         $DB->execute($sql, $params);
2806         $sql = "UPDATE {capabilities} SET name = :participatecap WHERE name = :viewcap";
2807         $DB->execute($sql, $params);
2808         // note: the view capability is readded again at the end of upgrade, but with different meaning
2809         upgrade_main_savepoint(true, 2010033102.00);
2810     }
2812     if ($oldversion < 2010033102.01) {
2813         // Define field archetype to be added to role table
2814         $table = new xmldb_table('role');
2815         $field = new xmldb_field('archetype', XMLDB_TYPE_CHAR, '30', null, XMLDB_NOTNULL, null, null, 'sortorder');
2816         $dbman->add_field($table, $field);
2817         upgrade_main_savepoint(true, 2010033102.01);
2818     }
2820     if ($oldversion < 2010033102.02) {
2821         // Set archetype for existing roles and change admin role to manager role
2822         $sql = "SELECT r.*, rc.capability
2823                   FROM {role} r
2824                   JOIN {role_capabilities} rc ON rc.roleid = r.id
2825                  WHERE rc.contextid = :syscontextid AND rc.capability LIKE :legacycaps
2826               ORDER BY r.id";
2827         $params = array('syscontextid'=>SYSCONTEXTID, 'legacycaps'=>'moodle/legacy:%');
2828         $substart = strlen('moodle/legacy:');
2829         $roles = $DB->get_recordset_sql($sql, $params); // in theory could be multiple legacy flags in one role
2830         foreach ($roles as $role) {
2831             $role->archetype = substr($role->capability, $substart);
2832             unset($role->capability);
2833             if ($role->archetype === 'admin') {
2834                 $i = '';
2835                 if ($DB->record_exists('role', array('shortname'=>'manager')) or $DB->record_exists('role', array('name'=>get_string('manager', 'role')))) {
2836                     $i = 2;
2837                     while($DB->record_exists('role', array('shortname'=>'manager'.$i)) or $DB->record_exists('role', array('name'=>get_string('manager', 'role').$i))) {
2838                         $i++;
2839                     }
2840                 }
2841                 $role->archetype = 'manager';
2842                 if ($role->shortname === 'admin') {
2843                     $role->shortname   = 'manager'.$i;
2844                     $role->name        = get_string('manager', 'role').$i;
2845                     $role->description = get_string('managerdescription', 'role');
2846                 }
2847             }
2848             $DB->update_record('role', $role);
2849         }
2850         $roles->close();
2852         upgrade_main_savepoint(true, 2010033102.02);
2853     }
2855     if ($oldversion < 2010033102.03) {
2856         // Now pick site admins (===have manager role assigned at the system context)
2857         // and store them in the new $CFG->siteadmins setting as comma separated list
2858         $sql = "SELECT ra.id, ra.userid
2859                   FROM {role_assignments} ra
2860                   JOIN {role} r ON r.id = ra.roleid
2861                   JOIN {user} u ON u.id = ra.userid
2862                  WHERE ra.contextid = :syscontext AND r.archetype = 'manager' AND u.deleted = 0
2863               ORDER BY ra.id";
2864         $ras = $DB->get_records_sql($sql, array('syscontext'=>SYSCONTEXTID));
2865         $admins = array();
2866         foreach ($ras as $ra) {
2867             $admins[$ra->userid] = $ra->userid;
2868             set_config('siteadmins', implode(',', $admins)); // better to save it repeatedly, we do need at least one admin
2869             $DB->delete_records('role_assignments', array('id'=>$ra->id));
2870         }
2872         upgrade_main_savepoint(true, 2010033102.03);
2873     }
2875     if ($oldversion < 2010033102.04) {
2876         // clean up the manager roles
2877         $managers = $DB->get_records('role', array('archetype'=>'manager'));
2878         foreach ($managers as $manager) {
2879             // now sanitize the capabilities and overrides
2880             $DB->delete_records('role_capabilities', array('capability'=>'moodle/site:config', 'roleid'=>$manager->id)); // only site admins may configure servers
2881             // note: doanything and legacy caps are deleted automatically, they get moodle/course:view later at the end of the upgrade
2883             // remove manager role assignments bellow the course context level - admin role was never intended for activities and blocks,
2884             // the problem is that those assignments would not be visible after upgrade and old style admins in activities make no sense anyway
2885             $DB->delete_records_select('role_assignments', "roleid = :manager AND contextid IN (SELECT id FROM {context} WHERE contextlevel > 50)", array('manager'=>$manager->id));
2887             // allow them to assign all roles except default user, guest and frontpage - users get these roles automatically on the fly when needed
2888             $DB->delete_records('role_allow_assign', array('roleid'=>$manager->id));
2889             $roles = $DB->get_records_sql("SELECT * FROM {role} WHERE archetype <> 'user' AND archetype <> 'guest' AND archetype <> 'frontpage'");
2890             foreach ($roles as $role) {
2891                 $record = (object)array('roleid'=>$manager->id, 'allowassign'=>$role->id);
2892                 $DB->insert_record('role_allow_assign', $record);
2893             }
2895             // allow them to override all roles
2896             $DB->delete_records('role_allow_override', array('roleid'=>$manager->id));
2897             $roles = $DB->get_records_sql("SELECT * FROM {role}");
2898             foreach ($roles as $role) {
2899                 $record = (object)array('roleid'=>$manager->id, 'allowoverride'=>$role->id);
2900                 $DB->insert_record('role_allow_override', $record);
2901             }
2903             // allow them to switch to all following roles
2904             $DB->delete_records('role_allow_switch', array('roleid'=>$manager->id));
2905             $roles = $DB->get_records_sql("SELECT * FROM {role} WHERE archetype IN ('student', 'teacher', 'editingteacher')");
2906             foreach ($roles as $role) {
2907                 $record = (object)array('roleid'=>$manager->id, 'allowswitch'=>$role->id);
2908                 $DB->insert_record('role_allow_switch', $record);
2909             }
2910         }
2912         upgrade_main_savepoint(true, 2010033102.04);
2913     }
2915     if ($oldversion < 2010033102.05) {
2916         // remove course:view from all roles that are not used for enrolment, it does NOT belong there because it really means user is enrolled!
2917         $noenrolroles = $DB->get_records_select('role', "archetype IN ('guest', 'user', 'manager', 'coursecreator', 'frontpage')");
2918         foreach ($noenrolroles as $role) {
2919             $DB->delete_records('role_capabilities', array('roleid'=>$role->id, 'capability'=>'moodle/course:participate'));
2920         }
2921         upgrade_main_savepoint(true, 2010033102.05);
2922     }
2924     if ($oldversion < 2010033102.06) {
2925         // make sure there is nothing weird in default user role
2926         if (!empty($CFG->defaultuserroleid)) {
2927             if ($role = $DB->get_record('role', array('id'=>$CFG->defaultuserroleid))) {
2928                 if ($role->archetype !== '' and $role->archetype !== 'user') {
2929                     upgrade_log(UPGRADE_LOG_NOTICE, null, 'Default authenticated user role (defaultuserroleid) value is invalid, setting cleared.');
2930                     unset_config('defaultuserroleid');
2931                 }
2932             } else {
2933                 unset_config('defaultuserroleid');
2934             }
2935         }
2936         upgrade_main_savepoint(true, 2010033102.06);
2937     }
2939     if ($oldversion < 2010033102.07) {
2940         if (!empty($CFG->displayloginfailures) and $CFG->displayloginfailures === 'teacher') {
2941             upgrade_log(UPGRADE_LOG_NOTICE, null, 'Displaying of login failuters to teachers is not supported any more.');
2942             unset_config('displayloginfailures');
2943         }
2944         upgrade_main_savepoint(true, 2010033102.07);
2945     }
2947     if ($oldversion < 2010033102.08) {
2948         // make sure there are no problems in default guest role settings
2949         if (!empty($CFG->guestroleid)) {
2950             if ($role = $DB->get_record('role', array('id'=>$CFG->guestroleid))) {
2951                 if ($role->archetype !== '' and $role->archetype !== 'guest') {
2952                     upgrade_log(UPGRADE_LOG_NOTICE, null, 'Default guest role (guestroleid) value is invalid, setting cleared.');
2953                     unset_config('guestroleid');
2954                 }
2955             } else {
2956                 upgrade_log(UPGRADE_LOG_NOTICE, null, 'Role specified in Default guest role (guestroleid) does not exist, setting cleared.');
2957                 unset_config('guestroleid');
2958             }
2959         }
2960         // remove all roles of the guest account - the only way to change it is to override the guest role, sorry
2961         // the guest account gets all the role assignments on the fly which works fine in has_capability(),
2962         $DB->delete_records_select('role_assignments', "userid IN (SELECT id FROM {user} WHERE username = 'guest')");
2964         upgrade_main_savepoint(true, 2010033102.08);
2965     }
2967     /// New table for storing which roles can be assigned in which contexts.
2968     if ($oldversion < 2010033102.09) {
2970     /// Define table role_context_levels to be created
2971         $table = new xmldb_table('role_context_levels');
2973     /// Adding fields to table role_context_levels
2974         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
2975         $table->add_field('roleid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2976         $table->add_field('contextlevel', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
2978     /// Adding keys to table role_context_levels
2979         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
2980         $table->add_key('contextlevel-roleid', XMLDB_KEY_UNIQUE, array('contextlevel', 'roleid'));
2981         $table->add_key('roleid', XMLDB_KEY_FOREIGN, array('roleid'), 'role', array('id'));
2983     /// Conditionally launch create table for role_context_levels
2984         if (!$dbman->table_exists($table)) {
2985             $dbman->create_table($table);
2986         }
2988     /// Main savepoint reached
2989         upgrade_main_savepoint(true, 2010033102.09);
2990     }
2992     if ($oldversion < 2010033102.10) {
2993         // Now populate the role_context_levels table with the default values
2994         // NOTE: do not use accesslib methods here
2996         $rolecontextlevels = array();
2997         $defaults = array('manager'        => array(CONTEXT_SYSTEM, CONTEXT_COURSECAT, CONTEXT_COURSE),
2998                           'coursecreator'  => array(CONTEXT_SYSTEM, CONTEXT_COURSECAT),
2999                           'editingteacher' => array(CONTEXT_COURSE, CONTEXT_MODULE),
3000                           'teacher'        => array(CONTEXT_COURSE, CONTEXT_MODULE),
3001                           'student'        => array(CONTEXT_COURSE, CONTEXT_MODULE),
3002                           'guest'          => array(),
3003                           'user'           => array(),
3004                           'frontpage'      => array());
3006         $roles = $DB->get_records('role', array(), '', 'id, archetype');
3007         foreach ($roles as $role) {
3008             if (isset($defaults[$role->archetype])) {
3009                 $rolecontextlevels[$role->id] = $defaults[$role->archetype];
3010             }
3011         }
3013         // add roles without archetypes, it may contain weird things, but we can not fix them
3014         list($narsql, $params) = $DB->get_in_or_equal(array_keys($defaults), SQL_PARAMS_NAMED, 'ar', false);
3015         $sql = "SELECT DISTINCT ra.roleid, con.contextlevel
3016                   FROM {role_assignments} ra
3017                   JOIN {context} con ON ra.contextid = con.id
3018                   JOIN {role} r ON r.id = ra.roleid
3019                  WHERE r.archetype $narsql";
3020         $existingrolecontextlevels = $DB->get_recordset_sql($sql, $params);
3021         foreach ($existingrolecontextlevels as $rcl) {
3022             if (!isset($rolecontextlevels[$rcl->roleid])) {
3023                 $rolecontextlevels[$rcl->roleid] = array();
3024             }
3025             $rolecontextlevels[$rcl->roleid][] = $rcl->contextlevel;
3026         }
3027         $existingrolecontextlevels->close();
3029         // Put the data into the database.
3030         $rcl = new stdClass();
3031         foreach ($rolecontextlevels as $roleid => $contextlevels) {
3032             $rcl->roleid = $roleid;
3033             foreach ($contextlevels as $level) {
3034                 $rcl->contextlevel = $level;
3035                 $DB->insert_record('role_context_levels', $rcl, false);
3036             }
3037         }
3039         // release memory!!
3040         unset($roles);
3041         unset($defaults);
3042         unset($rcl);
3043         unset($existingrolecontextlevels);
3044         unset($rolecontextlevels);
3046         // Main savepoint reached
3047         upgrade_main_savepoint(true, 2010033102.10);
3048     }
3050     if ($oldversion < 2010040700) {
3051         // migrate old groupings --> groupmembersonly setting
3052         if (isset($CFG->enablegroupings)) {
3053             set_config('enablegroupmembersonly', $CFG->enablegroupings);
3054             unset_config('enablegroupings');
3055         }
3057         // Main savepoint reached
3058         upgrade_main_savepoint(true, 2010040700);
3059     }
3061     if ($oldversion < 2010040900) {
3063         // Changing the default of field lang on table user to good old "en"
3064         $table = new xmldb_table('user');
3065         $field = new xmldb_field('lang', XMLDB_TYPE_CHAR, '30', null, XMLDB_NOTNULL, null, 'en', 'country');
3067         // Launch change of default for field lang
3068         $dbman->change_field_default($table, $field);
3070         // update main site lang
3071         if (strpos($CFG->lang, '_utf8') !== false) {
3072             $lang = str_replace('_utf8', '', $CFG->lang);
3073             set_config('lang', $lang);
3074         }
3076         // tweak langlist
3077         if (!empty($CFG->langlist)) {
3078             $langs = explode(',', $CFG->langlist);
3079             foreach ($langs as $key=>$lang) {
3080                 $lang = str_replace('_utf8', '', $lang);
3081                 $langs[$key] = $lang;
3082             }
3083             set_config('langlist', implode(',', $langs));
3084         }
3086         // Main savepoint reached
3087         upgrade_main_savepoint(true, 2010040900);
3088     }
3090     if ($oldversion < 2010040901) {
3092         // Remove "_utf8" suffix from all langs in user table
3093         $langs = $DB->get_records_sql("SELECT DISTINCT lang FROM {user} WHERE lang LIKE ?", array('%_utf8'));
3095         foreach ($langs as $lang=>$unused) {
3096             $newlang = str_replace('_utf8', '', $lang);
3097             $sql = "UPDATE {user} SET lang = :newlang WHERE lang = :lang";
3098             $DB->execute($sql, array('newlang'=>$newlang, 'lang'=>$lang));
3099         }
3101         // Main savepoint reached
3102         upgrade_main_savepoint(true, 2010040901);
3103     }
3105     if ($oldversion < 2010041301) {
3106         $sql = "UPDATE {block} SET name=? WHERE name=?";
3107         $DB->execute($sql, array('navigation', 'global_navigation_tree'));
3108         $DB->execute($sql, array('settings', 'settings_navigation_tree'));
3110         $sql = "UPDATE {block_instances} SET blockname=? WHERE blockname=?";
3111         $DB->execute($sql, array('navigation', 'global_navigation_tree'));
3112         $DB->execute($sql, array('settings', 'settings_navigation_tree'));
3113         upgrade_main_savepoint(true, 2010041301);
3114     }
3116     if ($oldversion < 2010042100) {
3118     /// Define table backup_controllers to be created
3119         $table = new xmldb_table('backup_controllers');
3121     /// Adding fields to table backup_controllers
3122         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
3123         $table->add_field('backupid', XMLDB_TYPE_CHAR, '32', null, XMLDB_NOTNULL, null, null);
3124         $table->add_field('type', XMLDB_TYPE_CHAR, '6', null, XMLDB_NOTNULL, null, null);
3125         $table->add_field('itemid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3126         $table->add_field('format', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, null);
3127         $table->add_field('interactive', XMLDB_TYPE_INTEGER, '4', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3128         $table->add_field('purpose', XMLDB_TYPE_INTEGER, '4', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3129         $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3130         $table->add_field('status', XMLDB_TYPE_INTEGER, '4', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3131         $table->add_field('execution', XMLDB_TYPE_INTEGER, '4', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3132         $table->add_field('executiontime', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3133         $table->add_field('checksum', XMLDB_TYPE_CHAR, '32', null, XMLDB_NOTNULL, null, null);
3134         $table->add_field('timecreated', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3135         $table->add_field('timemodified', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3136         $table->add_field('controller', XMLDB_TYPE_TEXT, 'big', null, XMLDB_NOTNULL, null, null);
3138     /// Adding keys to table backup_controllers
3139         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
3140         $table->add_key('backupid_uk', XMLDB_KEY_UNIQUE, array('backupid'));
3141         $table->add_key('userid_fk', XMLDB_KEY_FOREIGN, array('userid'), 'user', array('id'));
3143     /// Adding indexes to table backup_controllers
3144         $table->add_index('typeitem_ix', XMLDB_INDEX_NOTUNIQUE, array('type', 'itemid'));
3146     /// Conditionally launch create table for backup_controllers
3147         if (!$dbman->table_exists($table)) {
3148             $dbman->create_table($table);
3149         }
3151     /// Define table backup_ids_template to be created
3152         $table = new xmldb_table('backup_ids_template');
3154     /// Adding fields to table backup_ids_template
3155         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
3156         $table->add_field('backupid', XMLDB_TYPE_CHAR, '32', null, XMLDB_NOTNULL, null, null);
3157         $table->add_field('itemname', XMLDB_TYPE_CHAR, '30', null, XMLDB_NOTNULL, null, null);
3158         $table->add_field('itemid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3159         $table->add_field('parentitemid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
3161     /// Adding keys to table backup_ids_template
3162         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
3163         $table->add_key('backupid_itemname_itemid_uk', XMLDB_KEY_UNIQUE, array('backupid', 'itemname', 'itemid'));
3165     /// Adding indexes to table backup_ids_template
3166         $table->add_index('backupid_parentitemid_ix', XMLDB_INDEX_NOTUNIQUE, array('backupid', 'itemname', 'parentitemid'));
3168     /// Conditionally launch create table for backup_controllers
3169         if (!$dbman->table_exists($table)) {
3170             $dbman->create_table($table);
3171         }
3173     /// Main savepoint reached
3174         upgrade_main_savepoint(true, 2010042100);
3175     }
3177     if ($oldversion < 2010042301) {
3179         $table = new xmldb_table('course_sections');
3180         $field = new xmldb_field('name', XMLDB_TYPE_CHAR, '255', null, null, null, null, 'section');
3182         if (!$dbman->field_exists($table, $field)) {
3183             $dbman->add_field($table, $field);
3184         }
3186         upgrade_main_savepoint(true, 2010042301);
3187     }
3189     if ($oldversion < 2010042302) {
3190         // Define table cohort to be created
3191         $table = new xmldb_table('cohort');
3193         // Adding fields to table cohort
3194         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
3195         $table->add_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3196         $table->add_field('name', XMLDB_TYPE_CHAR, '254', null, XMLDB_NOTNULL, null, null);
3197         $table->add_field('idnumber', XMLDB_TYPE_CHAR, '100', null, null, null, null);
3198         $table->add_field('description', XMLDB_TYPE_TEXT, 'small', null, null, null, null);
3199         $table->add_field('descriptionformat', XMLDB_TYPE_INTEGER, '2', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3200         $table->add_field('component', XMLDB_TYPE_CHAR, '100', null, XMLDB_NOTNULL, null, null);
3201         $table->add_field('timecreated', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3202         $table->add_field('timemodified', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3204         // Adding keys to table cohort
3205         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
3206         $table->add_key('context', XMLDB_KEY_FOREIGN, array('contextid'), 'context', array('id'));
3208         // Conditionally launch create table for cohort
3209         if (!$dbman->table_exists($table)) {
3210             $dbman->create_table($table);
3211         }
3213         upgrade_main_savepoint(true, 2010042302);
3214     }
3216     if ($oldversion < 2010042303) {
3217         // Define table cohort_members to be created
3218         $table = new xmldb_table('cohort_members');
3220         // Adding fields to table cohort_members
3221         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
3222         $table->add_field('cohortid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
3223         $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
3224         $table->add_field('timeadded', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
3226         // Adding keys to table cohort_members
3227         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
3228         $table->add_key('cohortid', XMLDB_KEY_FOREIGN, array('cohortid'), 'cohort', array('id'));
3229         $table->add_key('userid', XMLDB_KEY_FOREIGN, array('userid'), 'user', array('id'));
3231         // Adding indexes to table cohort_members
3232         $table->add_index('cohortid-userid', XMLDB_INDEX_UNIQUE, array('cohortid', 'userid'));
3234         // Conditionally launch create table for cohort_members
3235         if (!$dbman->table_exists($table)) {
3236             $dbman->create_table($table);
3237         }
3239         // Main savepoint reached
3240         upgrade_main_savepoint(true, 2010042303);
3241     }
3243     if ($oldversion < 2010042800) {
3244         //drop the previously created ratings table
3245         $table = new xmldb_table('ratings');
3246         if ($dbman->table_exists($table)) {
3247             $dbman->drop_table($table);
3248         }
3250         //create the rating table (replaces module specific rating implementations)
3251         $table = new xmldb_table('rating');
3252         if ($dbman->table_exists($table)) {
3253             $dbman->drop_table($table);
3254         }
3256     /// Adding fields to table rating
3257         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
3258         $table->add_field('contextid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3260         $table->add_field('itemid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3261         $table->add_field('scaleid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, null);
3262         $table->add_field('rating', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3263         $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3265         $table->add_field('timecreated', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3266         $table->add_field('timemodified', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null);
3268     /// Adding keys to table rating
3269         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
3270         $table->add_key('contextid', XMLDB_KEY_FOREIGN, array('contextid'), 'context', array('id'));
3271         $table->add_key('userid', XMLDB_KEY_FOREIGN, array('userid'), 'user', array('id'));
3273     /// Adding indexes to table rating
3274         $table->add_index('itemid', XMLDB_INDEX_NOTUNIQUE, array('itemid'));
3276     /// Create table for ratings
3277         if (!$dbman->table_exists($table)) {
3278             $dbman->create_table($table);
3279         }
3281         upgrade_main_savepoint(true, 2010042800);
3282     }
3284     if ($oldversion < 2010042801) {
3285         // migrating old comments block content
3286         $DB->execute("UPDATE {comments}
3287                          SET contextid = (SELECT parentcontextid
3288                                             FROM {block_instances}
3289                                            WHERE id = {comments}.itemid AND blockname = 'comments'),
3290                              commentarea = 'page_comments',
3291                              itemid = 0
3292                        WHERE commentarea = 'block_comments'
3293                              AND itemid != 0
3294                              AND EXISTS (SELECT 'x'
3295                                            FROM {block_instances}
3296                                           WHERE id = {comments}.itemid
3297                                                 AND blockname = 'comments')");
3299         // remove all orphaned record
3300         $DB->delete_records('comments', array('commentarea'=>'block_comments'));
3301         upgrade_main_savepoint(true, 2010042801);
3302     }
3304     if ($oldversion < 2010042802) { // Change backup_controllers->type to varchar10 (recreate dep. index)
3306     /// Define index typeitem_ix (not unique) to be dropped form backup_controllers
3307         $table = new xmldb_table('backup_controllers');
3308         $index = new xmldb_index('typeitem_ix', XMLDB_INDEX_NOTUNIQUE, array('type', 'itemid'));
3310     /// Conditionally launch drop index typeitem_ix
3311         if ($dbman->index_exists($table, $index)) {
3312             $dbman->drop_index($table, $index);
3313         }
3315     /// Changing precision of field type on table backup_controllers to (10)
3316         $table = new xmldb_table('backup_controllers');
3317         $field = new xmldb_field('type', XMLDB_TYPE_CHAR, '10', null, XMLDB_NOTNULL, null, null, 'backupid');
3319     /// Launch change of precision for field type
3320         $dbman->change_field_precision($table, $field);
3322     /// Define index typeitem_ix (not unique) to be added to backup_controllers
3323         $table = new xmldb_table('backup_controllers');
3324         $index = new xmldb_index('typeitem_ix', XMLDB_INDEX_NOTUNIQUE, array('type', 'itemid'));
3326     /// Conditionally launch add index typeitem_ix
3327         if (!$dbman->index_exists($table, $index)) {
3328             $dbman->add_index($table, $index);
3329         }
3331     /// Main savepoint reached
3332         upgrade_main_savepoint(true, 2010042802);
3333     }
3335     if ($oldversion < 2010043000) {  // Adding new course completion feature
3337     /// Add course completion tables
3338     /// Define table course_completion_aggr_methd to be created
3339         $table = new xmldb_table('course_completion_aggr_methd');
3341     /// Adding fields to table course_completion_aggr_methd
3342         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
3343         $table->add_field('course', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
3344         $table->add_field('criteriatype', XMLDB_TYPE_INTEGER, '20', XMLDB_UNSIGNED, null, null, null);
3345         $table->add_field('method', XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
3346         $table->add_field('value', XMLDB_TYPE_NUMBER, '10, 5', null, null, null, null);
3348     /// Adding keys to table course_completion_aggr_methd
3349         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
3351     /// Adding indexes to table course_completion_aggr_methd
3352         $table->add_index('course', XMLDB_INDEX_NOTUNIQUE, array('course'));
3353         $table->add_index('criteriatype', XMLDB_INDEX_NOTUNIQUE, array('criteriatype'));
3355     /// Conditionally launch create table for course_completion_aggr_methd
3356         if (!$dbman->table_exists($table)) {
3357             $dbman->create_table($table);
3358         }
3361     /// Define table course_completion_criteria to be created
3362         $table = new xmldb_table('course_completion_criteria');
3364     /// Adding fields to table course_completion_criteria
3365         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
3366         $table->add_field('course', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
3367         $table->add_field('criteriatype', XMLDB_TYPE_INTEGER, '20', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
3368         $table->add_field('module', XMLDB_TYPE_CHAR, '100', null, null, null, null);
3369         $table->add_field('moduleinstance', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
3370         $table->add_field('courseinstance', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
3371         $table->add_field('enrolperiod', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
3372         $table->add_field('timeend', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
3373         $table->add_field('gradepass', XMLDB_TYPE_NUMBER, '10, 5', null, null, null, null);
3374         $table->add_field('role', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
3376     /// Adding keys to table course_completion_criteria
3377         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
3379     /// Adding indexes to table course_completion_criteria
3380         $table->add_index('course', XMLDB_INDEX_NOTUNIQUE, array('course'));
3382     /// Conditionally launch create table for course_completion_criteria
3383         if (!$dbman->table_exists($table)) {
3384             $dbman->create_table($table);
3385         }
3388     /// Define table course_completion_crit_compl to be created
3389         $table = new xmldb_table('course_completion_crit_compl');
3391     /// Adding fields to table course_completion_crit_compl
3392         $table->add_field('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
3393         $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
3394         $table->add_field('course', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
3395         $table->add_field('criteriaid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0');
3396         $table->add_field('gradefinal', XMLDB_TYPE_NUMBER, '10, 5', null, null, null, null);
3397         $table->add_field('unenroled', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
3398         $table->add_field('deleted', XMLDB_TYPE_INTEGER, '1', XMLDB_UNSIGNED, null, null, null);
3399         $table->add_field('timecompleted', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, null, null, null);
3401     /// Adding keys to table course_completion_crit_compl
3402         $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
3404     /// Adding indexes to table course_completion_crit_compl
3405         $table->add_index('userid', XMLDB_INDEX_