You are here

public function DepthUninstallValidator::validate in Taxonomy Term Depth 8.2

Same name in this branch
  1. 8.2 src/DepthUninstallValidator.php \Drupal\taxonomy_term_depth\DepthUninstallValidator::validate()
  2. 8.2 src/ProxyClass/DepthUninstallValidator.php \Drupal\taxonomy_term_depth\ProxyClass\DepthUninstallValidator::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

src/ProxyClass/DepthUninstallValidator.php, line 73

Class

DepthUninstallValidator
Provides a proxy class for \Drupal\taxonomy_term_depth\DepthUninstallValidator.

Namespace

Drupal\taxonomy_term_depth\ProxyClass

Code

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