2011-01-30 18:18:58 +01:00
|
|
|
<?php
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
|
|
//
|
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This file keeps track of upgrades to the imsenterprise enrolment plugin
|
|
|
|
*
|
2013-04-27 13:41:32 +02:00
|
|
|
* @package enrol_imsenterprise
|
2013-10-03 11:22:50 +08:00
|
|
|
* @copyright 2011 Petr Skoda (http://skodak.org)
|
2011-01-30 18:18:58 +01:00
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
|
2013-10-03 11:22:50 +08:00
|
|
|
/**
|
|
|
|
* Performs upgrade of the database structure and data
|
|
|
|
*
|
|
|
|
* @param int $oldversion the version we are upgrading from
|
|
|
|
* @return bool true
|
|
|
|
*/
|
2011-01-30 18:18:58 +01:00
|
|
|
function xmldb_enrol_imsenterprise_upgrade($oldversion) {
|
2016-02-06 12:33:09 +01:00
|
|
|
global $CFG;
|
2014-05-28 01:13:42 +02:00
|
|
|
|
2018-05-19 21:22:04 +02:00
|
|
|
// Automatically generated Moodle v3.5.0 release upgrade line.
|
|
|
|
// Put any upgrade step following this.
|
|
|
|
|
2018-12-02 18:36:40 +01:00
|
|
|
// Automatically generated Moodle v3.6.0 release upgrade line.
|
|
|
|
// Put any upgrade step following this.
|
|
|
|
|
2019-05-20 19:35:05 +02:00
|
|
|
// Automatically generated Moodle v3.7.0 release upgrade line.
|
|
|
|
// Put any upgrade step following this.
|
|
|
|
|
2019-11-17 11:40:19 +01:00
|
|
|
// Automatically generated Moodle v3.8.0 release upgrade line.
|
|
|
|
// Put any upgrade step following this.
|
|
|
|
|
2020-06-14 13:08:09 +02:00
|
|
|
// Automatically generated Moodle v3.9.0 release upgrade line.
|
|
|
|
// Put any upgrade step following this.
|
|
|
|
|
2011-01-30 18:18:58 +01:00
|
|
|
return true;
|
|
|
|
}
|