protected function EntityStorageBase::postLoad in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/EntityStorageBase.php \Drupal\Core\Entity\EntityStorageBase::postLoad()
Attaches data to entities upon loading.
Parameters
array $entities: Associative array of query results, keyed on the entity ID.
2 calls to EntityStorageBase::postLoad()
- ContentEntityStorageBase::loadRevision in core/
lib/ Drupal/ Core/ Entity/ ContentEntityStorageBase.php - Load a specific entity revision.
- EntityStorageBase::loadMultiple in core/
lib/ Drupal/ Core/ Entity/ EntityStorageBase.php - Loads one or more entities.
File
- core/
lib/ Drupal/ Core/ Entity/ EntityStorageBase.php, line 300 - Contains \Drupal\Core\Entity\EntityStorageBase.
Class
- EntityStorageBase
- A base entity storage class.
Namespace
Drupal\Core\EntityCode
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);
}
}