You are here

public function FeedsProcessor::expiryTime in Feeds 8.2

Per default, don't support expiry. If processor supports expiry of imported items, return the time after which items should be removed.

1 call to FeedsProcessor::expiryTime()
FeedsProcessor::expire in lib/Drupal/feeds/Plugin/FeedsProcessor.php
Deletes feed items older than REQUEST_TIME - $time.
1 method overrides FeedsProcessor::expiryTime()
FeedsNodeProcessor::expiryTime in lib/Drupal/feeds/Plugin/feeds/processor/FeedsNodeProcessor.php
Return expiry time.

File

lib/Drupal/feeds/Plugin/FeedsProcessor.php, line 589
Contains FeedsProcessor and related classes.

Class

FeedsProcessor
Abstract class, defines interface for processors.

Namespace

Drupal\feeds\Plugin

Code

public function expiryTime() {
  return FEEDS_EXPIRE_NEVER;
}