You are here

public function ProcessorInterface::getExpiredIds in Feeds 8.3

Returns feed item ID's to expire.

Parameters

\Drupal\feeds\FeedInterface $feed: The feed for which to get the expired item ID's.

int $time: (optional) All items produced by this configuration that are older than REQUEST_TIME - $time that are expired. If null, the processor should use internal configuration. Defaults to null.

Return value

array A list of item ID's.

1 method overrides ProcessorInterface::getExpiredIds()
EntityProcessorBase::getExpiredIds in src/Feeds/Processor/EntityProcessorBase.php
Returns feed item ID's to expire.

File

src/Plugin/Type/Processor/ProcessorInterface.php, line 106

Class

ProcessorInterface
Interface for Feeds processor plugins.

Namespace

Drupal\feeds\Plugin\Type\Processor

Code

public function getExpiredIds(FeedInterface $feed, $time = NULL);