MDL-62868 core_group: clear group_grouping cache when changing grouping

This commit is contained in:
Jake Dallimore 2018-07-12 16:34:50 +08:00
parent 8c51626841
commit fd6d98cc90

View File

@ -59,6 +59,8 @@ if ($frm = data_submitted() and confirm_sesskey()) {
// Invalidate the course groups cache seeing as we've changed it.
cache_helper::invalidate_by_definition('core', 'groupdata', array(), array($courseid));
// Invalidate the user_group_groupings cache, too.
cache_helper::purge_by_definition('core', 'user_group_groupings');
} else if (isset($frm->remove) and !empty($frm->removeselect)) {
foreach ($frm->removeselect as $groupid) {
// Ask this method not to purge the cache, we'll do it ourselves afterwards.
@ -66,6 +68,9 @@ if ($frm = data_submitted() and confirm_sesskey()) {
}
// Invalidate the course groups cache seeing as we've changed it.
cache_helper::invalidate_by_definition('core', 'groupdata', array(), array($courseid));
// Invalidate the user_group_groupings cache, too.
cache_helper::purge_by_definition('core', 'user_group_groupings');
}
}