W3cubDocs

/Drupal 8

protected function EntityStorageBase::postLoad

protected EntityStorageBase::postLoad(array &$entities)

Attaches data to entities upon loading.

Parameters

array $entities: Associative array of query results, keyed on the entity ID.

File

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

Class

EntityStorageBase
A base entity storage class.

Namespace

Drupal\Core\Entity

Code

protected function postLoad(array &$entities) {
  $entity_class = $this->entityClass;
  $entity_class::postLoad($this, $entities);
  // Call hook_entity_load().
  foreach ($this->moduleHandler()->getImplementations('entity_load') as $module) {
    $function = $module . '_entity_load';
    $function($entities, $this->entityTypeId);
  }
  // Call hook_TYPE_load().
  foreach ($this->moduleHandler()->getImplementations($this->entityTypeId . '_load') as $module) {
    $function = $module . '_' . $this->entityTypeId . '_load';
    $function($entities);
  }
}

© 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::postLoad/8.1.x