aggregator-feed-source.tpl.php

  1. 7.x drupal-7.x/modules/aggregator/aggregator-feed-source.tpl.php
  2. 6.x drupal-6.x/modules/aggregator/aggregator-feed-source.tpl.php

aggregator-feed-source.tpl.php Default theme implementation to present the source of the feed.

The contents are render above feed listings when browsing source feeds. For example, "example.com/aggregator/sources/1".

Available variables:

  • $source_icon: Feed icon linked to the source. Rendered through theme_feed_icon().
  • $source_image: Image set by the feed source.
  • $source_description: Description set by the feed source.
  • $source_url: URL to the feed source.
  • $last_checked: How long ago the feed was checked locally.

See also

template_preprocess()

template_preprocess_aggregator_feed_source()

1 theme call to aggregator-feed-source.tpl.php
aggregator_page_source in drupal-6.x/modules/aggregator/aggregator.pages.inc
Menu callback; displays all the items captured from a particular feed.

File

drupal-6.x/modules/aggregator/aggregator-feed-source.tpl.php
View source
  1. <?php
  2. /**
  3. * @file aggregator-feed-source.tpl.php
  4. * Default theme implementation to present the source of the feed.
  5. *
  6. * The contents are render above feed listings when browsing source feeds.
  7. * For example, "example.com/aggregator/sources/1".
  8. *
  9. * Available variables:
  10. * - $source_icon: Feed icon linked to the source. Rendered through
  11. * theme_feed_icon().
  12. * - $source_image: Image set by the feed source.
  13. * - $source_description: Description set by the feed source.
  14. * - $source_url: URL to the feed source.
  15. * - $last_checked: How long ago the feed was checked locally.
  16. *
  17. * @see template_preprocess()
  18. * @see template_preprocess_aggregator_feed_source()
  19. */
  20. ?>
  21. <div class="feed-source">
  22. <?php print $source_icon; ?>
  23. <?php print $source_image; ?>
  24. <div class="feed-description">
  25. <?php print $source_description; ?>
  26. </div>
  27. <div class="feed-url">
  28. <em><?php print t('URL:'); ?></em> <a href="<?php print $source_url; ?>"><?php print $source_url; ?></a>
  29. </div>
  30. <div class="feed-updated">
  31. <em><?php print t('Updated:'); ?></em> <?php print $last_checked; ?>
  32. </div>
  33. </div>