theme_aggregator_block_item

  1. drupal
    1. 4.7 aggregator.module
    2. 5 aggregator.module
    3. 6
    4. 7
Versions
4.7 – 6 theme_aggregator_block_item($item, $feed = 0)
7 theme_aggregator_block_item($variables)

Returns HTML for an individual feed item for display in the block.

Parameters

$variables An associative array containing:

  • item: The item to be displayed.
  • feed: Not used.

Related topics

Code

drupal/modules/aggregator/aggregator.module, line 703

<?php
function theme_aggregator_block_item($variables) {
  // Display the external link to the item.
  return '<a href="' . check_url($variables['item']->link) . '">' . check_plain($variables['item']->title) . "</a>\n";
}
?>