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

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
2016-10-29 09:19:33
Comments
Leave a Comment

Please login to continue.