| 1 |
<?php
|
| 2 |
// $Id$
|
| 3 |
|
| 4 |
/**
|
| 5 |
* @file
|
| 6 |
* Views file for Slideshow Pro integration.
|
| 7 |
*
|
| 8 |
* Contains hook implementations to be discovered by the views module.
|
| 9 |
*/
|
| 10 |
|
| 11 |
/**
|
| 12 |
* Implementation of hook_views_plugins.
|
| 13 |
*/
|
| 14 |
function slideshowpro_views_plugins() {
|
| 15 |
return array(
|
| 16 |
'module' => 'slideshowpro',
|
| 17 |
'style' => array(
|
| 18 |
'slideshowpro_xml' => array(
|
| 19 |
'title' => t('SlideShowPro: XML feed'),
|
| 20 |
'help' => t('Display the node with the SlideShowPro integration module.'),
|
| 21 |
'handler' => 'slideshowpro_plugin_style_xml',
|
| 22 |
'theme' => 'slideshowpro_feed',
|
| 23 |
'theme file' => 'slideshowpro.theme.inc',
|
| 24 |
'theme path' => drupal_get_path('module', 'slideshowpro'),
|
| 25 |
'uses row plugin' => TRUE,
|
| 26 |
'uses options' => TRUE,
|
| 27 |
'type' => 'feed',
|
| 28 |
'help topic' => 'style-slideshowpro-xml',
|
| 29 |
),
|
| 30 |
),
|
| 31 |
);
|
| 32 |
|
| 33 |
}
|