function template_preprocess_aggregator_summary_items

7.x aggregator.pages.inc template_preprocess_aggregator_summary_items(&$variables)
6.x aggregator.pages.inc template_preprocess_aggregator_summary_items(&$variables)

Process variables for aggregator-summary-items.tpl.php.

See also

aggregator-summary-item.tpl.php

File

drupal-6.x/modules/aggregator/aggregator.pages.inc, line 441
User page callbacks for the aggregator module.

Code

function template_preprocess_aggregator_summary_items(&$variables) {
  $variables['title'] = check_plain($variables['source']->title);
  $variables['summary_list'] = theme('item_list', $variables['summary_items']);
  $variables['source_url'] = $variables['source']->url;
}