protected EntityDeleteFormTrait::logDeletionMessage()
Logs a message about the deleted entity.
File
- core/lib/Drupal/Core/Entity/EntityDeleteFormTrait.php, line 110
Class
- EntityDeleteFormTrait
- Provides a trait for an entity deletion form.
Namespace
Drupal\Core\Entity
Code
1 2 3 4 5 6 7 | protected function logDeletionMessage() { $entity = $this ->getEntity(); $this ->logger( $entity ->getEntityType()->getProvider())->notice( 'The @entity-type %label has been deleted.' , array ( '@entity-type' => $entity ->getEntityType()->getLowercaseLabel(), '%label' => $entity ->label(), )); } |
Please login to continue.