aggregator-item.tpl.php

Default theme implementation to format an individual feed item for display on the aggregator page.

Available variables:

  • $feed_url: URL to the originating feed item.
  • $feed_title: Title of the feed item.
  • $source_url: Link to the local source section.
  • $source_title: Title of the remote source.
  • $source_date: Date the feed was posted on the remote source.
  • $content: Feed item content.
  • $categories: Linked categories assigned to the feed.

See also

template_preprocess()

template_preprocess_aggregator_item()

2 theme calls to aggregator-item.tpl.php
aggregator_categorize_items in drupal/modules/aggregator/aggregator.pages.inc
Form constructor to build the page list form.
_aggregator_page_list in drupal/modules/aggregator/aggregator.pages.inc
Prints an aggregator page listing a number of feed items.

File

drupal/modules/aggregator/aggregator-item.tpl.php
View source
<?php

/**
 * @file
 * Default theme implementation to format an individual feed item for display
 * on the aggregator page.
 *
 * Available variables:
 * - $feed_url: URL to the originating feed item.
 * - $feed_title: Title of the feed item.
 * - $source_url: Link to the local source section.
 * - $source_title: Title of the remote source.
 * - $source_date: Date the feed was posted on the remote source.
 * - $content: Feed item content.
 * - $categories: Linked categories assigned to the feed.
 *
 * @see template_preprocess()
 * @see template_preprocess_aggregator_item()
 *
 * @ingroup themeable
 */
?>
<div class="feed-item">
  <h3 class="feed-item-title">
    <a href="<?php

print $feed_url;
?>"><?php

print $feed_title;
?></a>
  </h3>

  <div class="feed-item-meta">
  <?php

if ($source_url) {
  ?>
    <a href="<?php

  print $source_url;
  ?>" class="feed-item-source"><?php

  print $source_title;
  ?></a> -
  <?php

}
?>
    <span class="feed-item-date"><?php

print $source_date;
?></span>
  </div>

<?php

if ($content) {
  ?>
  <div class="feed-item-body">
    <?php

  print $content;
  ?>
  </div>
<?php

}
?>

<?php

if ($categories) {
  ?>
  <div class="feed-item-categories">
    <?php

  print t('Categories');
  ?>: <?php

  print implode(', ', $categories);
  ?>
  </div>
<?php

}
?>

</div>

Related topics