| 6 aggregator.pages.inc | template_preprocess_aggregator_summary_items(&$variables) |
| 7 aggregator.pages.inc | template_preprocess_aggregator_summary_items(&$variables) |
| 8 aggregator.pages.inc | 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 507 - 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;
}
Login or register to post comments