Projet

Général

Profil

Paste
Télécharger (820 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / views_slideshow / views_slideshow.views.inc @ 87dbc3bf

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
        'path' => drupal_get_path('module', 'views_slideshow'),
24
        'theme' => 'views_slideshow',
25
        'theme path' => drupal_get_path('module', 'views_slideshow') . '/theme',
26
        'theme file' => 'views_slideshow.theme.inc',
27
      ),
28
    ),
29
  );
30
}