function views_fractionslider_views_plugins in Views FractionSlider 7
Same name and namespace in other branches
- 7.2 views/views_fractionslider.views.inc \views_fractionslider_views_plugins()
Implementation of hook_views_plugin().
File
- ./
views_fractionslider.views.inc, line 10 - Provide an fractionslider style plugin for Views. This file is autoloaded by 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' => 'views_fractionslider_style_plugin',
'uses row plugin' => TRUE,
'uses row class' => TRUE,
'uses options' => TRUE,
'uses fields' => TRUE,
'type' => 'normal',
),
),
);
}