function aggregator_feed_load
Loads an aggregator feed.
Parameters
$fid: The feed id.
Return value
An object describing the feed.
File
-
modules/
aggregator/ aggregator.module, line 691
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];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.