You are here

public static function Feed::preDelete in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/aggregator/src/Entity/Feed.php \Drupal\aggregator\Entity\Feed::preDelete()

Acts on entities before they are deleted and before hooks are invoked.

Used before the entities are deleted and 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::preDelete

File

core/modules/aggregator/src/Entity/Feed.php, line 109

Class

Feed
Defines the aggregator feed entity class.

Namespace

Drupal\aggregator\Entity

Code

public static function preDelete(EntityStorageInterface $storage, array $entities) {
  foreach ($entities as $entity) {

    // Notify processors to delete stored items.
    \Drupal::service('aggregator.items.importer')
      ->delete($entity);
  }
}