theme_aggregator_block_item

  1. drupal
    1. drupal6
    2. drupal7
Versionen
drupal6 – drupal7 theme_aggregator_block_item($item, $feed = 0)

Format an individual feed item for display in the block.

Übergabeparameter

$item The item to be displayed.

$feed Not used.

Rückgabewert

The item HTML.

Verwandte Themen

Code

modules/aggregator/aggregator.module, line 600

<?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

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
  • Zulässige HTML-Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen

Kommentar hinzufügen

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
  • Zulässige HTML-Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen