class ContentUninstallValidator in Zircon Profile 8
Same name in this branch
- 8 core/lib/Drupal/Core/Entity/ContentUninstallValidator.php \Drupal\Core\Entity\ContentUninstallValidator
- 8 core/lib/Drupal/Core/ProxyClass/Entity/ContentUninstallValidator.php \Drupal\Core\ProxyClass\Entity\ContentUninstallValidator
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Entity/ContentUninstallValidator.php \Drupal\Core\Entity\ContentUninstallValidator
Validates module uninstall readiness based on existing content entities.
Hierarchy
- class \Drupal\Core\Entity\ContentUninstallValidator implements ModuleUninstallValidatorInterface uses StringTranslationTrait
Expanded class hierarchy of ContentUninstallValidator
1 string reference to 'ContentUninstallValidator'
- core.services.yml in core/
core.services.yml - core/core.services.yml
1 service uses ContentUninstallValidator
File
- core/
lib/ Drupal/ Core/ Entity/ ContentUninstallValidator.php, line 17 - Contains \Drupal\Core\Entity\ContentUninstallValidator.
Namespace
Drupal\Core\EntityView source
class ContentUninstallValidator implements ModuleUninstallValidatorInterface {
use StringTranslationTrait;
/**
* The entity manager.
*
* @var \Drupal\Core\Entity\EntityManagerInterface
*/
protected $entityManager;
/**
* Constructs a new ContentUninstallValidator.
*
* @param \Drupal\Core\Entity\EntityManagerInterface $entity_manager
* The entity manager.
* @param \Drupal\Core\StringTranslation\TranslationInterface $string_translation
* The string translation service.
*/
public function __construct(EntityManagerInterface $entity_manager, TranslationInterface $string_translation) {
$this->entityManager = $entity_manager;
$this->stringTranslation = $string_translation;
}
/**
* {@inheritdoc}
*/
public function validate($module) {
$entity_types = $this->entityManager
->getDefinitions();
$reasons = array();
foreach ($entity_types as $entity_type) {
if ($module == $entity_type
->getProvider() && $entity_type instanceof ContentEntityTypeInterface && $this->entityManager
->getStorage($entity_type
->id())
->hasData()) {
$reasons[] = $this
->t('There is content for the entity type: @entity_type', array(
'@entity_type' => $entity_type
->getLabel(),
));
}
}
return $reasons;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ContentUninstallValidator:: |
protected | property | The entity manager. | |
ContentUninstallValidator:: |
public | function |
Determines the reasons a module can not be uninstalled. Overrides ModuleUninstallValidatorInterface:: |
|
ContentUninstallValidator:: |
public | function | Constructs a new ContentUninstallValidator. | |
StringTranslationTrait:: |
protected | property | The string translation service. | |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |