| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * @file views-view-rss.tpl.php 4 * Default template for feed displays that use the RSS style. 5 * 6 * @ingroup views_templates 7 */ 8 ?> 9 <?php print "<?xml"; ?> version="1.0" encoding="utf-8" <?php print "?>"; ?> 10 <rss version="2.0" xml:base="<?php print $link; ?>"<?php print $namespaces; ?>> 11 <channel> 12 <title><?php print $title; ?></title> 13 <link><?php print $link; ?></link> 14 <description><?php print $description; ?></description> 15 <language><?php print $langcode; ?></language> 16 <?php print $channel_elements; ?> 17 <?php print $items; ?> 18 </channel> 19 </rss>
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 |