You are here

public function ConfirmDeleteMultiple::getQuestion in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/comment/src/Form/ConfirmDeleteMultiple.php \Drupal\comment\Form\ConfirmDeleteMultiple::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 DeleteMultipleForm::getQuestion

File

core/modules/comment/src/Form/ConfirmDeleteMultiple.php, line 18

Class

ConfirmDeleteMultiple
Provides the comment multiple delete confirmation form.

Namespace

Drupal\comment\Form

Code

public function getQuestion() {
  return $this
    ->formatPlural(count($this->selection), 'Are you sure you want to delete this comment and all its children?', 'Are you sure you want to delete these comments and all their children?');
}