function aggregator_get_category in Drupal 4
Same name and namespace in other branches
- 5 modules/aggregator/aggregator.module \aggregator_get_category()
1 call to aggregator_get_category()
- aggregator_menu in modules/
aggregator.module - Implementation of hook_menu().
File
- modules/
aggregator.module, line 967 - 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));
}