public function DeleteMultiple::getQuestion in Log entity 8
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
- src/
Form/ DeleteMultiple.php, line 110 - Contains \Drupal\log\Form\DeleteMultiple.
Class
- DeleteMultiple
- Provides a log deletion confirmation form.
Namespace
Drupal\log\FormCode
public function getQuestion() {
return $this
->formatPlural(count($this->logInfo), 'Are you sure you want to delete this item?', 'Are you sure you want to delete these items?');
}