public function ConfirmDeleteMultiple::getQuestion in Drupal 8
Same name and namespace in other branches
- 9 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\FormCode
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?');
}