EntityDeleteFormTrait::logDeletionMessage

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

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(),
  ));
}
doc_Drupal
2016-10-29 09:05:09
Comments
Leave a Comment

Please login to continue.