function avatars_entity_storage_load in Avatar Kit 8.2
Implements hook_entity_storage_load().
File
- ./
avatars.module, line 29 - Contains hooks for Avatar Kit.
Code
function avatars_entity_storage_load(array $entities) : void {
/** @var $hookService \Drupal\avatars\AvatarKitEntityHooksInterface */
$hookService = \Drupal::service('avatars.hooks');
$hookService
->storageLoad($entities);
}