function aggregator_feed_load

Loads an aggregator feed.

Parameters

$fid: The feed id.

Return value

An object describing the feed.

File

drupal/core/modules/aggregator/aggregator.module, line 699
Used to aggregate syndicated content (RSS, RDF, and Atom).

Code

function aggregator_feed_load($fid) {
  $feeds =& drupal_static(__FUNCTION__);
  if (!isset($feeds[$fid])) {
    $feeds[$fid] = db_query('SELECT * FROM {aggregator_feed} WHERE fid = :fid', array(
      ':fid' => $fid,
    ))
      ->fetchObject();
  }
  return $feeds[$fid];
}