public function ContentUninstallValidator::validate in Drupal 10
Same name in this branch
- 10 core/lib/Drupal/Core/Entity/ContentUninstallValidator.php \Drupal\Core\Entity\ContentUninstallValidator::validate()
- 10 core/lib/Drupal/Core/ProxyClass/Entity/ContentUninstallValidator.php \Drupal\Core\ProxyClass\Entity\ContentUninstallValidator::validate()
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/ProxyClass/Entity/ContentUninstallValidator.php \Drupal\Core\ProxyClass\Entity\ContentUninstallValidator::validate()
- 9 core/lib/Drupal/Core/ProxyClass/Entity/ContentUninstallValidator.php \Drupal\Core\ProxyClass\Entity\ContentUninstallValidator::validate()
Determines the reasons a module can not be uninstalled.
Parameters
string $module: A module name.
Return value
string[] An array of reasons the module can not be uninstalled, empty if it can. Each reason should not end with any punctuation since multiple reasons can be displayed together.
Overrides ModuleUninstallValidatorInterface::validate
See also
template_preprocess_system_modules_uninstall()
File
- core/
lib/ Drupal/ Core/ ProxyClass/ Entity/ ContentUninstallValidator.php, line 73
Class
- ContentUninstallValidator
- Provides a proxy class for \Drupal\Core\Entity\ContentUninstallValidator.
Namespace
Drupal\Core\ProxyClass\EntityCode
public function validate($module) {
return $this
->lazyLoadItself()
->validate($module);
}