function views_rows_wrapper_views_plugins in Views Rows Wrapper 7
Implements hook_views_plugins().
File
- ./
views_rows_wrapper.views.inc, line 11 - Contains views_rows_wrapper plugin settings.
Code
function views_rows_wrapper_views_plugins() {
return array(
'module' => 'views_rows_wrapper',
'style' => array(
'rows_wrapper' => array(
'title' => t('Rows wrapper'),
'handler' => 'views_rows_wrapper_plugin_style_rows_wrapper',
'path' => drupal_get_path('module', 'views_rows_wrapper'),
'theme' => 'views_rows_wrapper',
'js' => [],
'type' => 'normal',
'uses row plugin' => TRUE,
'uses fields' => TRUE,
'uses options' => TRUE,
'uses grouping' => FALSE,
'even empty' => FALSE,
),
),
);
}