function theme_aggregator_summary_item

Default theme implementation to present a linked feed item for summaries.

Parameters

$variables: An associative array containing:

  • item_link: Link to item.
  • item_age: Age of the item.

See also

template_preprocess()

template_preprocess_aggregator_summary_item()

2 theme calls to theme_aggregator_summary_item()
aggregator_page_categories in drupal/core/modules/aggregator/aggregator.pages.inc
Page callback: Displays all the categories used by the aggregator.
aggregator_page_sources in drupal/core/modules/aggregator/aggregator.pages.inc
Page callback: Displays all the feeds used by the aggregator.

File

drupal/core/modules/aggregator/aggregator.pages.inc, line 303
User page callbacks for the aggregator module.

Code

function theme_aggregator_summary_item($variables) {
  return $variables['item_url'] . ' ' . $variables['item_age'];
}