function views_fractionslider_views_plugins in Views FractionSlider 7.2
Same name and namespace in other branches
- 7 views_fractionslider.views.inc \views_fractionslider_views_plugins()
Implements hook_views_plugin().
File
- views/
views_fractionslider.views.inc, line 11 - Provide an fractionslider style plugin for Views.
Code
function views_fractionslider_views_plugins() {
return array(
'style' => array(
'views_fractionslider' => array(
'title' => t('Views Fractionslider'),
'theme' => 'views_view_fractionslider',
'help' => t('Display a JQuery Fractionslider with the results. The first field will be used as the header and trigger.'),
'handler' => 'ViewsFractionsliderStylePlugin',
'uses row plugin' => TRUE,
'uses row class' => TRUE,
'uses options' => TRUE,
'uses fields' => TRUE,
'type' => 'normal',
),
),
);
}