You are here

public function PrepareModulesEntityUninstallForm::getQuestion in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/src/Form/PrepareModulesEntityUninstallForm.php \Drupal\system\Form\PrepareModulesEntityUninstallForm::getQuestion()
  2. 10 core/modules/system/src/Form/PrepareModulesEntityUninstallForm.php \Drupal\system\Form\PrepareModulesEntityUninstallForm::getQuestion()

Returns the question to ask the user.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The form question. The page title will be set to this value.

Overrides ConfirmFormInterface::getQuestion

File

core/modules/system/src/Form/PrepareModulesEntityUninstallForm.php, line 65

Class

PrepareModulesEntityUninstallForm
Provides a form removing module content entities data before uninstallation.

Namespace

Drupal\system\Form

Code

public function getQuestion() {
  $entity_type = $this->entityTypeManager
    ->getDefinition($this->entityTypeId);
  return $this
    ->t('Are you sure you want to delete all @entity_type_plural?', [
    '@entity_type_plural' => $entity_type
      ->getPluralLabel(),
  ]);
}