Mercurial > hg > rr-repo
comparison sites/all/modules/views_slideshow/views_slideshow.views.inc @ 2:b74b41bb73f0
-- Google analytics module
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Thu, 22 Aug 2013 17:22:54 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1:67ce89da90df | 2:b74b41bb73f0 |
---|---|
1 <?php | |
2 | |
3 /** | |
4 * @file | |
5 * Defines the View Style Plugins for Views Slideshow module. | |
6 */ | |
7 | |
8 /** | |
9 * Implements hook_views_plugins(). | |
10 */ | |
11 function views_slideshow_views_plugins() { | |
12 return array( | |
13 'style' => array( | |
14 'slideshow' => array( | |
15 'title' => t('Slideshow'), | |
16 'help' => t('Display the results as a slideshow.'), | |
17 'handler' => 'views_slideshow_plugin_style_slideshow', | |
18 'uses options' => TRUE, | |
19 'uses row plugin' => TRUE, | |
20 'uses grouping' => FALSE, | |
21 'uses row class' => TRUE, | |
22 'type' => 'normal', | |
23 'parent' => 'list', | |
24 'path' => drupal_get_path('module', 'views_slideshow'), | |
25 'theme' => 'views_slideshow', | |
26 'theme path' => drupal_get_path('module', 'views_slideshow') . '/theme', | |
27 'theme file' => 'views_slideshow.theme.inc', | |
28 ), | |
29 ), | |
30 ); | |
31 } |