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

This commit is contained in:
Mark Nelson
2018-05-15 12:02:52 +08:00
parent 374387c563
commit e8279ab994
8 changed files with 0 additions and 29 deletions
-3
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]);
}
/**
-4
View File
@@ -211,10 +211,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_USER) {
return;
}
-4
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;
}
-4
View File
@@ -183,10 +183,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);
-4
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;
}
-3
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
@@ -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;