You are here

public function RoleAssignUninstallValidator::validate in RoleAssign 8

Same name in this branch
  1. 8 src/RoleAssignUninstallValidator.php \Drupal\roleassign\RoleAssignUninstallValidator::validate()
  2. 8 src/ProxyClass/RoleAssignUninstallValidator.php \Drupal\roleassign\ProxyClass\RoleAssignUninstallValidator::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/RoleAssignUninstallValidator.php, line 29

Class

RoleAssignUninstallValidator
Prevents uninstallation of roleassign module by restricted users.

Namespace

Drupal\roleassign

Code

public function validate($module) {
  $reasons = [];
  if ($this
    ->isCli()) {
    return $reasons;
  }
  if ($module == "roleassign") {
    if (!\Drupal::currentUser()
      ->hasPermission('administer roles')) {
      $reasons[] = $this
        ->t('You are not allowed to disable this module.');
    }
  }
  return $reasons;
}