function views_fluidgrid_views_plugins in Views Fluid Grid - jQuery Masonry 6
Same name and namespace in other branches
- 7 includes/views_fluidgrid.views.inc \views_fluidgrid_views_plugins()
Implementation of hook_views_plugin().
File
- ./
views_fluidgrid.views.inc, line 11 - Provide a fluid grid display style for Views. This file is autoloaded by views.
Code
function views_fluidgrid_views_plugins() {
return array(
'style' => array(
'views_fluidgrid' => array(
'title' => t('Views Fluid Grid - jQuery Masonry'),
'theme' => 'views_view_fluidgrid',
'help' => t('Provide a fluid grid display style for Views.'),
'handler' => 'views_fluidgrid_style_plugin',
'uses row plugin' => TRUE,
'uses options' => TRUE,
'type' => 'normal',
),
),
);
}