ImageStyle::postDelete

public static ImageStyle::postDelete(EntityStorageInterface $storage, array $entities)

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 Entity::postDelete

File

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

Class

ImageStyle
Defines an image style configuration entity.

Namespace

Drupal\image\Entity

Code

1
2
3
4
5
6
7
8
9
10
11
12
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());
  }
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.