protected function 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(),
  ));
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Entity!EntityDeleteFormTrait.php/function/EntityDeleteFormTrait::logDeletionMessage/8.1.x