/[drupal]/contributions/modules/itunes/itunes.views.inc
ViewVC logotype

Contents of /contributions/modules/itunes/itunes.views.inc

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


Revision 1.2 - (show annotations) (download) (as text)
Fri Jul 31 22:45:06 2009 UTC (3 months, 4 weeks ago) by drewish
Branch: MAIN
CVS Tags: DRUPAL-6--1-4, HEAD
Changes since 1.1: +6 -0 lines
File MIME type: text/x-php
#481072 by guix: Documentation and whitespace fixes.
1 <?php
2 // $Id$
3
4 /**
5 * @file
6 * Views includes.
7 */
8
9 /**
10 * Implementation of hook_views_plugins().
11 */
12 function itunes_views_plugins() {
13 return array(
14 'module' => 'itunes',
15 'style' => array(
16 'itunes_rss' => array(
17 'title' => t('iTunes RSS Feed'),
18 'help' => t('Generates an RSS feed from a view with extra iTunes specific attributes.'),
19 'handler' => 'itunes_plugin_style_rss',
20 'theme' => 'views_view_rss',
21 'parent' => 'rss',
22 'uses row plugin' => TRUE,
23 'uses options' => TRUE,
24 'type' => 'feed',
25 ),
26 ),
27 );
28 }

  ViewVC Help
Powered by ViewVC 1.1.2