You are here

public function EntityProcessorBase::expiryTime in Feeds 8.3

Returns the age of items that should be removed.

@todo Move this to a separate interface.

Return value

int The unix timestamp of the age of items to be removed.

Overrides ProcessorInterface::expiryTime

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

File

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

Class

EntityProcessorBase
Defines a base entity processor.

Namespace

Drupal\feeds\Feeds\Processor

Code

public function expiryTime() {
  return $this->configuration['expire'];
}