| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 * @file aggregator-summary-item.tpl.php 5 * Default theme implementation to present a linked feed item for summaries. 6 * 7 * Available variables: 8 * - $feed_url: Link to originating feed. 9 * - $feed_title: Title of feed. 10 * - $feed_age: Age of remote feed. 11 * - $source_url: Link to remote source. 12 * - $source_title: Locally set title for the source. 13 * 14 * @see template_preprocess() 15 * @see template_preprocess_aggregator_summary_item() 16 */ 17 ?> 18 <a href="<?php print $feed_url; ?>"><?php print $feed_title; ?></a> <span class="age"><?php print $feed_age; ?></span><?php if ($source_url) : ?>, <span class="source"><a href="<?php print $source_url; ?>"><?php print $source_title; ?></a></span><?php endif; ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Jul 9 18:01:44 2012 | Cross-referenced by PHPXref 0.7 |