Parent Directory
|
Revision Log
|
Revision Graph
#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 |