W3cubDocs

/Drupal 8

protected function EntityStorageBase::invokeHook

protected EntityStorageBase::invokeHook($hook, EntityInterface $entity)

Invokes a hook on behalf of the entity.

Parameters

string $hook: One of 'presave', 'insert', 'update', 'predelete', 'delete', or 'revision_delete'.

\Drupal\Core\Entity\EntityInterface $entity: The entity object.

File

core/lib/Drupal/Core/Entity/EntityStorageBase.php, line 165

Class

EntityStorageBase
A base entity storage class.

Namespace

Drupal\Core\Entity

Code

protected function invokeHook($hook, EntityInterface $entity) {
  // Invoke the hook.
  $this->moduleHandler()->invokeAll($this->entityTypeId . '_' . $hook, array($entity));
  // Invoke the respective entity-level hook.
  $this->moduleHandler()->invokeAll('entity_' . $hook, array($entity));
}

© 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!EntityStorageBase.php/function/EntityStorageBase::invokeHook/8.1.x