function EntityDeleteFormTrait::getQuestion
Same name and namespace in other branches
- 11.x core/lib/Drupal/Core/Entity/EntityDeleteFormTrait.php \Drupal\Core\Entity\EntityDeleteFormTrait::getQuestion()
- 10 core/lib/Drupal/Core/Entity/EntityDeleteFormTrait.php \Drupal\Core\Entity\EntityDeleteFormTrait::getQuestion()
- 8.9.x core/lib/Drupal/Core/Entity/EntityDeleteFormTrait.php \Drupal\Core\Entity\EntityDeleteFormTrait::getQuestion()
1 method overrides EntityDeleteFormTrait::getQuestion()
- VocabularyDeleteForm::getQuestion in core/
modules/ taxonomy/ src/ Form/ VocabularyDeleteForm.php
File
-
core/
lib/ Drupal/ Core/ Entity/ EntityDeleteFormTrait.php, line 46
Class
- EntityDeleteFormTrait
- Provides a trait for an entity deletion form.
Namespace
Drupal\Core\EntityCode
public function getQuestion() {
return $this->t('Are you sure you want to delete the @entity-type %label?', [
'@entity-type' => $this->getEntity()
->getEntityType()
->getSingularLabel(),
'%label' => $this->getEntity()
->label() ?? $this->getEntity()
->id(),
]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.