You are here

function viewscarousel_views_style_plugins in Views carousel 5

Implementation of hook_views_style_plugins()

File

./viewscarousel.module, line 149
Enable the creation of dynamic loading carousel widgets with views.

Code

function viewscarousel_views_style_plugins() {
  $plugins = array();
  $plugins['carousel'] = array(
    'name' => t('Carousel'),
    'theme' => 'viewscarousel_display',
    'summary_theme' => 'viewscarousel_display',
    'validate' => 'viewscarousel_validate',
    'needs_fields' => TRUE,
    'needs_table_header' => FALSE,
  );
  return $plugins;
}