function _aggregator_category_title

7.x aggregator.module _aggregator_category_title($category)
6.x aggregator.module _aggregator_category_title($category)

Menu callback.

Return value

An aggregator category title.

1 string reference to '_aggregator_category_title'
aggregator_menu in drupal-6.x/modules/aggregator/aggregator.module
Implementation of hook_menu().

File

drupal-6.x/modules/aggregator/aggregator.module, line 255
Used to aggregate syndicated content (RSS, RDF, and Atom).

Code

function _aggregator_category_title($category) {
  return $category['title'];
}