function taxonomy_rss_item in Drupal 4
Same name and namespace in other branches
- 5 modules/taxonomy/taxonomy.module \taxonomy_rss_item()
- 6 modules/taxonomy/taxonomy.module \taxonomy_rss_item()
Provides category information for rss feeds
1 call to taxonomy_rss_item()
- taxonomy_nodeapi in modules/
taxonomy.module - Implementation of hook_nodeapi().
File
- modules/
taxonomy.module, line 1293 - Enables the organization of content into categories.
Code
function taxonomy_rss_item($node) {
$output = array();
foreach ($node->taxonomy as $term) {
$output[] = array(
'key' => 'category',
'value' => check_plain($term->name),
'attributes' => array(
'domain' => url('taxonomy/term/' . $term->tid, NULL, NULL, TRUE),
),
);
}
return $output;
}