mirror of
https://github.com/moodle/moodle.git
synced 2025-04-14 04:52:36 +02:00
MDL-62228 core: remove unnecessary context check in privacy providers
This commit is contained in:
parent
ab65b87f3d
commit
df1714f25a
@ -313,9 +313,6 @@ class provider implements
|
||||
// Don't belong to the modifier user.
|
||||
|
||||
// Remove data from role_assignments.
|
||||
if (empty($context)) {
|
||||
return;
|
||||
}
|
||||
$DB->delete_records('role_assignments', ['contextid' => $context->id]);
|
||||
}
|
||||
/**
|
||||
|
@ -120,10 +120,6 @@ class provider implements
|
||||
* @param \context $context The context to delete data for.
|
||||
*/
|
||||
public static function delete_data_for_all_users_in_context(\context $context) {
|
||||
if (empty($context)) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ($context->contextlevel != CONTEXT_USER) {
|
||||
return;
|
||||
}
|
||||
|
@ -187,10 +187,6 @@ class provider implements
|
||||
* @param context $context Transform the specific context to delete data for.
|
||||
*/
|
||||
public static function delete_data_for_all_users_in_context(\context $context) {
|
||||
if (empty($context)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Delete all Calendar Events in the specified context in batches.
|
||||
$eventids = array_keys(self::get_calendar_event_ids_by_context($context));
|
||||
self::delete_batch_records('event', 'id', $eventids);
|
||||
|
@ -143,10 +143,6 @@ class provider implements
|
||||
* @param context $context A user context.
|
||||
*/
|
||||
public static function delete_data_for_all_users_in_context(\context $context) {
|
||||
if (empty($context)) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!$context instanceof \context_system && !$context instanceof \context_coursecat) {
|
||||
return;
|
||||
}
|
||||
|
@ -164,9 +164,6 @@ class provider implements
|
||||
public static function delete_data_for_all_users_in_context(\context $context) {
|
||||
global $DB;
|
||||
|
||||
if (empty($context)) {
|
||||
return;
|
||||
}
|
||||
// Sanity check that context is at the User context level.
|
||||
if ($context->contextlevel == CONTEXT_COURSE) {
|
||||
$sql = "SELECT ue.id
|
||||
|
@ -215,10 +215,6 @@ class provider implements
|
||||
public static function delete_data_for_all_users_in_context(\context $context) {
|
||||
global $DB;
|
||||
|
||||
if (empty($context)) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ($context->contextlevel == CONTEXT_MODULE) {
|
||||
// Delete all assignment submissions for the assignment associated with the context module.
|
||||
$assignment = self::get_assignment_by_context($context);
|
||||
|
@ -240,9 +240,6 @@ class provider implements
|
||||
*/
|
||||
public static function delete_data_for_all_users_in_context(\context $context) {
|
||||
global $DB;
|
||||
if (empty($context)) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ($context->contextlevel != CONTEXT_MODULE) {
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user