mirror of
https://github.com/moodle/moodle.git
synced 2025-04-13 12:32:08 +02:00
MDL-76147 gradereport_grader: remove deprecated preferences.
This commit is contained in:
parent
f70f2760e8
commit
ca60efb89f
66
grade/report/grader/db/upgrade.php
Normal file
66
grade/report/grader/db/upgrade.php
Normal file
@ -0,0 +1,66 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Grader report upgrade steps.
|
||||
*
|
||||
* @package gradereport_grader
|
||||
* @copyright 2023 Ilya Tregubov <ilya@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
/**
|
||||
* Function to upgrade grader report.
|
||||
*
|
||||
* @param int $oldversion the version we are upgrading from
|
||||
* @return bool result
|
||||
*/
|
||||
function xmldb_gradereport_grader_upgrade(int $oldversion): bool {
|
||||
global $DB;
|
||||
|
||||
if ($oldversion < 2023032100) {
|
||||
// Remove grade_report_showquickfeedback, grade_report_enableajax, grade_report_showeyecons,
|
||||
// grade_report_showlocks, grade_report_showanalysisicon preferences for every user.
|
||||
$DB->delete_records('user_preferences', ['name' => 'grade_report_showquickfeedback']);
|
||||
$DB->delete_records('user_preferences', ['name' => 'grade_report_enableajax']);
|
||||
$DB->delete_records('user_preferences', ['name' => 'grade_report_showeyecons']);
|
||||
$DB->delete_records('user_preferences', ['name' => 'grade_report_showlocks']);
|
||||
$DB->delete_records('user_preferences', ['name' => 'grade_report_showanalysisicon']);
|
||||
|
||||
// Remove grade_report_showactivityicons, grade_report_showcalculations preferences for every user.
|
||||
$DB->delete_records('user_preferences', ['name' => 'grade_report_showactivityicons']);
|
||||
$DB->delete_records('user_preferences', ['name' => 'grade_report_showcalculations']);
|
||||
|
||||
// The grade_report_showquickfeedback, grade_report_enableajax, grade_report_showeyecons,
|
||||
// grade_report_showlocks, grade_report_showanalysisicon settings have been removed.
|
||||
unset_config('grade_report_showquickfeedback');
|
||||
unset_config('grade_report_enableajax');
|
||||
unset_config('grade_report_showeyecons');
|
||||
unset_config('grade_report_showlocks');
|
||||
unset_config('grade_report_showanalysisicon');
|
||||
|
||||
// The grade_report_showactivityicons, grade_report_showcalculations settings have been removed.
|
||||
unset_config('grade_report_showactivityicons');
|
||||
unset_config('grade_report_showcalculations');
|
||||
|
||||
// Main savepoint reached.
|
||||
upgrade_plugin_savepoint(true, 2023032100, 'grade', 'gradereport_grader');
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
@ -24,6 +24,6 @@
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$plugin->version = 2022112800; // The current plugin version (Date: YYYYMMDDXX).
|
||||
$plugin->version = 2023032100; // The current plugin version (Date: YYYYMMDDXX).
|
||||
$plugin->requires = 2022111800; // Requires this Moodle version.
|
||||
$plugin->component = 'gradereport_grader'; // Full name of the plugin (used for diagnostics)
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$version = 2023032200.00; // YYYYMMDD = weekly release date of this DEV branch.
|
||||
$version = 2023032200.01; // YYYYMMDD = weekly release date of this DEV branch.
|
||||
// RR = release increments - 00 in DEV branches.
|
||||
// .XX = incremental changes.
|
||||
$release = '4.2dev+ (Build: 20230322)'; // Human-friendly version name
|
||||
|
Loading…
x
Reference in New Issue
Block a user