protected function FeedsCommentProcessor::expiryQuery in Feeds Comment Processor 7
File
- ./
FeedsCommentProcessor.inc, line 137 - Contains FeedsCommentProcessor.
Class
- FeedsCommentProcessor
- Creates comments from feed items.
Code
protected function expiryQuery(FeedsSource $source, $time) {
$select = parent::expiryQuery($source, $time);
$select
->condition('e.created', REQUEST_TIME - $time, '<');
return $select;
}