protected EntityDeleteFormTrait::getDeletionMessage()
Gets the message to display to the user after deleting the entity.
Return value
string The translated string of the deletion message.
File
- core/lib/Drupal/Core/Entity/EntityDeleteFormTrait.php, line 66
Class
- EntityDeleteFormTrait
- Provides a trait for an entity deletion form.
Namespace
Drupal\Core\Entity
Code
protected function getDeletionMessage() { $entity = $this->getEntity(); return $this->t('The @entity-type %label has been deleted.', array( '@entity-type' => $entity->getEntityType()->getLowercaseLabel(), '%label' => $entity->label(), )); }
Please login to continue.