mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
MDL-70042 message_popup: progress bar on upgrade only when necessary
This commit is contained in:
parent
99680d1be4
commit
fad0a943b2
1 changed files with 13 additions and 11 deletions
|
@ -51,17 +51,19 @@ function xmldb_message_popup_upgrade($oldversion) {
|
|||
ON mpn.notificationid = n.id
|
||||
WHERE n.id IS NULL";
|
||||
$total = $DB->count_records_sql("SELECT COUNT(mpn.id) " . $fromsql);
|
||||
$i = 0;
|
||||
$pbar = new progress_bar('deletepopupnotification', 500, true);
|
||||
do {
|
||||
if ($popupnotifications = $DB->get_records_sql("SELECT mpn.id " . $fromsql, null, 0, 1000)) {
|
||||
list($insql, $inparams) = $DB->get_in_or_equal(array_keys($popupnotifications));
|
||||
$DB->delete_records_select('message_popup_notifications', "id $insql", $inparams);
|
||||
// Update progress.
|
||||
$i += count($inparams);
|
||||
$pbar->update($i, $total, "Cleaning up orphaned popup notification records - $i/$total.");
|
||||
}
|
||||
} while ($popupnotifications);
|
||||
if ($total > 0) {
|
||||
$i = 0;
|
||||
$pbar = new progress_bar('deletepopupnotification', 500, true);
|
||||
do {
|
||||
if ($popupnotifications = $DB->get_records_sql("SELECT mpn.id " . $fromsql, null, 0, 1000)) {
|
||||
list($insql, $inparams) = $DB->get_in_or_equal(array_keys($popupnotifications));
|
||||
$DB->delete_records_select('message_popup_notifications', "id $insql", $inparams);
|
||||
// Update progress.
|
||||
$i += count($inparams);
|
||||
$pbar->update($i, $total, "Cleaning up orphaned popup notification records - $i/$total.");
|
||||
}
|
||||
} while ($popupnotifications);
|
||||
}
|
||||
|
||||
// Reportbuilder savepoint reached.
|
||||
upgrade_plugin_savepoint(true, 2020020600, 'message', 'popup');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue