| Versionen | |
|---|---|
| drupal6 – drupal7 | theme_aggregator_block_item($item, $feed = 0) |
Format an individual feed item for display in the block.
$item The item to be displayed.
$feed Not used.
The item HTML.
modules/
<?php
function theme_aggregator_block_item($item, $feed = 0) {
// Display the external link to the item.
return '<a href="' . check_url($item->link) . '">' . check_plain($item->title) . "</a>\n";
}
?>
Kommentare
Kommentar hinzufügen