| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
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 'theme' => 'views_slideshow', 19 'uses options' => TRUE, 20 'uses row plugin' => TRUE, 21 'type' => 'normal', 22 'parent' => 'list', 23 ), 24 ), 25 ); 26 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Jul 9 18:01:44 2012 | Cross-referenced by PHPXref 0.7 |