You are here

public function FieldUninstallValidator::validate in Drupal 8

Same name in this branch
  1. 8 core/modules/field/src/FieldUninstallValidator.php \Drupal\field\FieldUninstallValidator::validate()
  2. 8 core/modules/field/src/ProxyClass/FieldUninstallValidator.php \Drupal\field\ProxyClass\FieldUninstallValidator::validate()
Same name and namespace in other branches
  1. 9 core/modules/field/src/ProxyClass/FieldUninstallValidator.php \Drupal\field\ProxyClass\FieldUninstallValidator::validate()
  2. 10 core/modules/field/src/ProxyClass/FieldUninstallValidator.php \Drupal\field\ProxyClass\FieldUninstallValidator::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/modules/field/src/ProxyClass/FieldUninstallValidator.php, line 73

Class

FieldUninstallValidator
Provides a proxy class for \Drupal\field\FieldUninstallValidator.

Namespace

Drupal\field\ProxyClass

Code

public function validate($module) {
  return $this
    ->lazyLoadItself()
    ->validate($module);
}