MDL-62228 core: remove unnecessary context check in privacy providers

This commit is contained in:
Mark Nelson 2018-05-14 18:29:52 +08:00
parent ab65b87f3d
commit df1714f25a
7 changed files with 0 additions and 25 deletions

View File

@ -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]);
}
/**

View File

@ -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;
}

View File

@ -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);

View File

@ -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;
}

View File

@ -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

View File

@ -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);

View File

@ -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;