You are here

public static function ImageStyle::postDelete in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/image/src/Entity/ImageStyle.php \Drupal\image\Entity\ImageStyle::postDelete()

Acts on deleted entities before the delete hook is invoked.

Used after the entities are deleted but before invoking the delete hook.

Parameters

\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage object.

\Drupal\Core\Entity\EntityInterface[] $entities: An array of entities.

Overrides EntityBase::postDelete

File

core/modules/image/src/Entity/ImageStyle.php, line 129

Class

ImageStyle
Defines an image style configuration entity.

Namespace

Drupal\image\Entity

Code

public static function postDelete(EntityStorageInterface $storage, array $entities) {
  parent::postDelete($storage, $entities);

  /** @var \Drupal\image\ImageStyleInterface[] $entities */
  foreach ($entities as $style) {

    // Flush cached media for the deleted style.
    $style
      ->flush();

    // Clear the replacement ID, if one has been previously stored.

    /** @var \Drupal\image\ImageStyleStorageInterface $storage */
    $storage
      ->clearReplacementId($style
      ->id());
  }
}