function template_preprocess_aggregator_summary_items

template_preprocess_aggregator_summary_items(&$variables)

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

See also

aggregator-summary-items.tpl.php

File

modules/aggregator/aggregator.pages.inc, line 526
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', array('items' => $variables['summary_items']));
  $variables['source_url'] = $variables['source']->url;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!aggregator!aggregator.pages.inc/function/template_preprocess_aggregator_summary_items/7.x