public EntityDeleteFormTrait::getQuestion()
File
- core/lib/Drupal/Core/Entity/EntityDeleteFormTrait.php, line 46
Class
- EntityDeleteFormTrait
- Provides a trait for an entity deletion form.
Namespace
Drupal\Core\Entity
Code
1 2 3 4 5 6 | public function getQuestion() { return $this ->t( 'Are you sure you want to delete the @entity-type %label?' , array ( '@entity-type' => $this ->getEntity()->getEntityType()->getLowercaseLabel(), '%label' => $this ->getEntity()->label(), )); } |
Please login to continue.