function DatabaseDriverUninstallValidator::validate

Same name in this branch
  1. 10 core/lib/Drupal/Core/ProxyClass/Extension/DatabaseDriverUninstallValidator.php \Drupal\Core\ProxyClass\Extension\DatabaseDriverUninstallValidator::validate()
Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/ProxyClass/Extension/DatabaseDriverUninstallValidator.php \Drupal\Core\ProxyClass\Extension\DatabaseDriverUninstallValidator::validate()
  2. 9 core/lib/Drupal/Core/Extension/DatabaseDriverUninstallValidator.php \Drupal\Core\Extension\DatabaseDriverUninstallValidator::validate()
  3. 11.x core/lib/Drupal/Core/ProxyClass/Extension/DatabaseDriverUninstallValidator.php \Drupal\Core\ProxyClass\Extension\DatabaseDriverUninstallValidator::validate()
  4. 11.x core/lib/Drupal/Core/Extension/DatabaseDriverUninstallValidator.php \Drupal\Core\Extension\DatabaseDriverUninstallValidator::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

File

core/lib/Drupal/Core/Extension/DatabaseDriverUninstallValidator.php, line 50

Class

DatabaseDriverUninstallValidator
Ensures installed modules providing a database driver are not uninstalled.

Namespace

Drupal\Core\Extension

Code

public function validate($module) {
  $reasons = [];
  // @todo Remove the next line of code in
  // https://www.drupal.org/project/drupal/issues/3129043.
  $this->connection = Database::getConnection();
  // When the database driver is provided by a module, then that module
  // cannot be uninstalled.
  if ($module === $this->connection
    ->getProvider()) {
    $module_name = $this->moduleExtensionList
      ->get($module)->info['name'];
    $reasons[] = $this->t("The module '@module_name' is providing the database driver '@driver_name'.", [
      '@module_name' => $module_name,
      '@driver_name' => $this->connection
        ->driver(),
    ]);
  }
  return $reasons;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.