function _aggregator_category_title

Title callback: Returns a title for aggregator category pages.

Parameters

$category: An aggregator category.

Return value

A string with the 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 253
Used to aggregate syndicated content (RSS, RDF, and Atom).

Code

function _aggregator_category_title($category) {
  return $category->title;
}