Skip to content

Commit

Permalink
MDL-76147 gradereport_grader: remove deprecated preferences.
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyatregubov committed Mar 24, 2023
1 parent f70f276 commit ca60efb
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 2 deletions.
66 changes: 66 additions & 0 deletions grade/report/grader/db/upgrade.php
@@ -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;
}
2 changes: 1 addition & 1 deletion grade/report/grader/version.php
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion version.php
Expand Up @@ -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
Expand Down

0 comments on commit ca60efb

Please sign in to comment.