You are here

public function ContentUninstallValidator::__construct in Drupal 8

Same name in this branch
  1. 8 core/lib/Drupal/Core/Entity/ContentUninstallValidator.php \Drupal\Core\Entity\ContentUninstallValidator::__construct()
  2. 8 core/lib/Drupal/Core/ProxyClass/Entity/ContentUninstallValidator.php \Drupal\Core\ProxyClass\Entity\ContentUninstallValidator::__construct()
Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Entity/ContentUninstallValidator.php \Drupal\Core\Entity\ContentUninstallValidator::__construct()

Constructs a new ContentUninstallValidator.

Parameters

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager service.

\Drupal\Core\StringTranslation\TranslationInterface $string_translation: The string translation service.

File

core/lib/Drupal/Core/Entity/ContentUninstallValidator.php, line 38

Class

ContentUninstallValidator
Validates module uninstall readiness based on existing content entities.

Namespace

Drupal\Core\Entity

Code

public function __construct(EntityTypeManagerInterface $entity_type_manager, TranslationInterface $string_translation) {
  if ($entity_type_manager instanceof EntityManagerInterface) {
    @trigger_error('Passing the entity.manager service to ContentUninstallValidator::__construct() is deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Pass the new dependencies instead. See https://www.drupal.org/node/2549139.', E_USER_DEPRECATED);
    $this->entityTypeManager = \Drupal::entityTypeManager();
  }
  else {
    $this->entityTypeManager = $entity_type_manager;
  }
  $this->stringTranslation = $string_translation;
}