You are here

function aggregator_get_category in Drupal 5

Same name and namespace in other branches
  1. 4 modules/aggregator.module \aggregator_get_category()
1 call to aggregator_get_category()
aggregator_menu in modules/aggregator/aggregator.module
Implementation of hook_menu().

File

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

Code

function aggregator_get_category($cid) {
  return db_fetch_array(db_query('SELECT * FROM {aggregator_category} WHERE cid = %d', $cid));
}