You are here

protected function EntityProcessorBase::entityDeleteMultiple in Feeds 8.3

2 calls to EntityProcessorBase::entityDeleteMultiple()
EntityProcessorBase::clear in src/Feeds/Processor/EntityProcessorBase.php
Removes all stored results for a feed.
EntityProcessorBase::expireItem in src/Feeds/Processor/EntityProcessorBase.php
Deletes feed items older than REQUEST_TIME - $time.

File

src/Feeds/Processor/EntityProcessorBase.php, line 675

Class

EntityProcessorBase
Defines a base entity processor.

Namespace

Drupal\feeds\Feeds\Processor

Code

protected function entityDeleteMultiple(array $entity_ids) {
  $entities = $this->storageController
    ->loadMultiple($entity_ids);
  $this->storageController
    ->delete($entities);
}