X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fsystem%2Fsrc%2FForm%2FPrepareModulesEntityUninstallForm.php;h=8531653247b51cbd0212f67a6f08a0543bf4963b;hb=4f1b9b4ab48a8498afac9e2213a02a23ccf4a06c;hp=079e574ed8acfff735e9c6d4741922767968870b;hpb=af6d1fb995500ae68849458ee10d66abbdcfb252;p=yaffs-website diff --git a/web/core/modules/system/src/Form/PrepareModulesEntityUninstallForm.php b/web/core/modules/system/src/Form/PrepareModulesEntityUninstallForm.php index 079e574ed..853165324 100644 --- a/web/core/modules/system/src/Form/PrepareModulesEntityUninstallForm.php +++ b/web/core/modules/system/src/Form/PrepareModulesEntityUninstallForm.php @@ -159,7 +159,7 @@ class PrepareModulesEntityUninstallForm extends ConfirmFormBase { '@entity_type_singular' => $entity_type->getSingularLabel(), '@entity_type_plural' => $entity_type->getPluralLabel(), ] - ) + ), ]; } @@ -250,7 +250,7 @@ class PrepareModulesEntityUninstallForm extends ConfirmFormBase { */ public static function moduleBatchFinished($success, $results, $operations) { $entity_type_plural = \Drupal::entityTypeManager()->getDefinition($results['entity_type_id'])->getPluralLabel(); - drupal_set_message(t('All @entity_type_plural have been deleted.', ['@entity_type_plural' => $entity_type_plural])); + \Drupal::messenger()->addStatus(t('All @entity_type_plural have been deleted.', ['@entity_type_plural' => $entity_type_plural])); return new RedirectResponse(Url::fromRoute('system.modules_uninstall')->setAbsolute()->toString()); }