芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/public_html/cepali/auth/shibboleth/db/upgrade.php
. /** * Shibboleth authentication plugin upgrade code * * @package auth_shibboleth * @copyright 2017 Stephen Bourget * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * Function to upgrade auth_shibboleth. * @param int $oldversion the version we are upgrading from * @return bool result */ function xmldb_auth_shibboleth_upgrade($oldversion) { global $CFG, $DB; if ($oldversion < 2017020700) { // Convert info in config plugins from auth/shibboleth to auth_shibboleth. upgrade_fix_config_auth_plugin_names('shibboleth'); upgrade_fix_config_auth_plugin_defaults('shibboleth'); upgrade_plugin_savepoint(true, 2017020700, 'auth', 'shibboleth'); } // Automatically generated Moodle v3.3.0 release upgrade line. // Put any upgrade step following this. // Automatically generated Moodle v3.4.0 release upgrade line. // Put any upgrade step following this. // Automatically generated Moodle v3.5.0 release upgrade line. // Put any upgrade step following this. // Automatically generated Moodle v3.6.0 release upgrade line. // Put any upgrade step following this. // Automatically generated Moodle v3.7.0 release upgrade line. // Put any upgrade step following this. return true; }