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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Thu Feb 26 19:40:00 2009 UTC (8 months, 4 weeks ago) by alexb
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-php
#300810 danielb: upgrade to Drupal 6.
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 }

  ViewVC Help
Powered by ViewVC 1.1.2