viewscarousel.views.inc in Views carousel 6.2
Same filename and directory in other branches
Provides the views plugin information.
File
viewscarousel.views.incView source
<?php
/**
* @file
* Provides the views plugin information.
*/
/**
* Implementation of hook_views_plugin().
*/
function viewscarousel_views_plugins() {
return array(
'module' => 'viewscarousel',
'style' => array(
'viewscarousel' => array(
'title' => t('Views Carousel'),
'theme' => 'viewscarousel_view',
'help' => t('Display rows in a Carousel via jCarousel.'),
'handler' => 'viewscarousel_style_plugin',
'uses row plugin' => TRUE,
'uses options' => TRUE,
'type' => 'normal',
),
),
);
}
Functions
Name![]() |
Description |
---|---|
viewscarousel_views_plugins | Implementation of hook_views_plugin(). |