/[drupal]/drupal/modules/aggregator/aggregator-summary-items.tpl.php
ViewVC logotype

Contents of /drupal/modules/aggregator/aggregator-summary-items.tpl.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.3 - (show annotations) (download) (as text)
Sun Aug 3 16:10:50 2008 UTC (15 months, 3 weeks ago) by dries
Branch: MAIN
CVS Tags: DRUPAL-7-0-UNSTABLE-6, DRUPAL-7-0-UNSTABLE-7, DRUPAL-7-0-UNSTABLE-10, DRUPAL-7-0-UNSTABLE-1, DRUPAL-7-0-UNSTABLE-2, DRUPAL-7-0-UNSTABLE-3, DRUPAL-7-0-UNSTABLE-4, DRUPAL-7-0-UNSTABLE-5, DRUPAL-7-0-UNSTABLE-8, DRUPAL-7-0-UNSTABLE-9, HEAD
Changes since 1.2: +2 -2 lines
File MIME type: text/x-php
- Patch #174179 by mustafu, spatz4000, fgm: heading hierachy was not always consistent.
1 <?php
2 // $Id: aggregator-summary-items.tpl.php,v 1.2 2008/05/15 21:27:32 dries Exp $
3
4 /**
5 * @file
6 * Default theme implementation to present feeds as list items.
7 *
8 * Each iteration generates a single feed source or category.
9 *
10 * Available variables:
11 * - $title: Title of the feed or category.
12 * - $summary_list: Unordered list of linked feed items generated through
13 * theme_item_list().
14 * - $source_url: URL to the local source or category.
15 *
16 * @see template_preprocess()
17 * @see template_preprocess_aggregator_summary-items()
18 */
19 ?>
20 <h3><?php print $title; ?></h3>
21 <?php print $summary_list; ?>
22 <div class="links">
23 <a href="<?php print $source_url; ?>"><?php print t('More'); ?></a>
24 </div>

  ViewVC Help
Powered by ViewVC 1.1.2