mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 21:49:15 +01:00
21 lines
499 B
PHP
21 lines
499 B
PHP
<?php
|
|
|
|
function xmldb_repository_filesystem_upgrade($oldversion) {
|
|
|
|
global $CFG, $DB;
|
|
|
|
$dbman = $DB->get_manager();
|
|
$result = true;
|
|
|
|
/// And upgrade begins here. For each one, you'll need one
|
|
/// block of code similar to the next one. Please, delete
|
|
/// this comment lines once this file start handling proper
|
|
/// upgrade code.
|
|
|
|
/// if ($result && $oldversion < YYYYMMDD00) { //New version in version.php
|
|
/// $result = result of database_manager methods
|
|
/// }
|
|
|
|
return $result;
|
|
}
|