You are here

interface AvatarKitEntityHooksInterface in Avatar Kit 8.2

Interface for Avatar Kit Drupal entity hooks.

Hierarchy

Expanded class hierarchy of AvatarKitEntityHooksInterface

All classes that implement AvatarKitEntityHooksInterface

File

src/AvatarKitEntityHooksInterface.php, line 10

Namespace

Drupal\avatars
View source
interface AvatarKitEntityHooksInterface {

  /**
   * Implements hook_entity_update().
   *
   * @see hook_entity_update()
   */
  public function update(EntityInterface $entity) : void;

  /**
   * Implements hook_entity_storage_load().
   *
   * @see \hook_entity_storage_load()
   */
  public function storageLoad(array $entities) : void;

}

Members