You are here

public function FeedsProcessor::expiryTime in Feeds 6

Same name and namespace in other branches
  1. 7.2 plugins/FeedsProcessor.inc \FeedsProcessor::expiryTime()
  2. 7 plugins/FeedsProcessor.inc \FeedsProcessor::expiryTime()

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

2 methods override FeedsProcessor::expiryTime()
FeedsDataProcessor::expiryTime in plugins/FeedsDataProcessor.inc
Return expiry time.
FeedsNodeProcessor::expiryTime in plugins/FeedsNodeProcessor.inc
Return expiry time.

File

plugins/FeedsProcessor.inc, line 162

Class

FeedsProcessor
Abstract class, defines interface for processors.

Code

public function expiryTime() {
  return FEEDS_EXPIRE_NEVER;
}