aggregator-feed-source.tpl.php
Default theme implementation to present the source of the feed.
The contents are rendered 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_aggregator_feed_source()
1 theme call to aggregator-feed-source.tpl.php
- aggregator_page_source in modules/
aggregator/ aggregator.pages.inc - Page callback: Displays all the items captured from the particular feed.
File
-
modules/
aggregator/ aggregator-feed-source.tpl.php
View source
<?php
/**
* @file
* Default theme implementation to present the source of the feed.
*
* The contents are rendered 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 template_preprocess()
* @see template_preprocess_aggregator_feed_source()
*
* @ingroup themeable
*/
?>
<div class="feed-source">
<?php
print $source_icon;
?>
<?php
print $source_image;
?>
<div class="feed-description">
<?php
print $source_description;
?>
</div>
<div class="feed-url">
<em><?php
print t('URL:');
?></em> <a href="<?php
print $source_url;
?>"><?php
print $source_url;
?></a>
</div>
<div class="feed-updated">
<em><?php
print t('Updated:');
?></em> <?php
print $last_checked;
?>
</div>
</div>
Related topics
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.