Expires items from a feed depending on expiration settings.

Parameters

$feed: Object describing feed.

1 call to aggregator_expire()
aggregator_refresh in modules/aggregator/aggregator.module
Checks a news feed for new items.

File

modules/aggregator/aggregator.processor.inc, line 193
Processor functions for the aggregator module.

Code

function aggregator_expire($feed) {
  $aggregator_clear = variable_get('aggregator_clear', 9676800);
  if ($aggregator_clear != AGGREGATOR_CLEAR_NEVER) {

    // Remove all items that are older than flush item timer.
    $age = REQUEST_TIME - $aggregator_clear;
    $iids = db_query('SELECT iid FROM {aggregator_item} WHERE fid = :fid AND timestamp < :timestamp', array(
      ':fid' => $feed->fid,
      ':timestamp' => $age,
    ))
      ->fetchCol();
    if ($iids) {
      db_delete('aggregator_category_item')
        ->condition('iid', $iids, 'IN')
        ->execute();
      db_delete('aggregator_item')
        ->condition('iid', $iids, 'IN')
        ->execute();
    }
  }
}