| Versionen | |
|---|---|
| drupal6 – drupal7 | template_preprocess_aggregator_summary_items(&$variables) |
Process variables for aggregator-summary-items.tpl.php.
aggregator-summary-item.tpl.php
modules/
<?php
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;
}
?>
Kommentare
Kommentar hinzufügen