function _aggregator_category_title

Title callback: Returns a title for aggregatory category pages.

Parameters

$category: An aggregator category.

Return value

An aggregator category title.

1 string reference to '_aggregator_category_title'
aggregator_menu in drupal/core/modules/aggregator/aggregator.module
Implements hook_menu().

File

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

Code

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