function views_secondary_row_views_plugins in Views Secondary Row 7
Implements hook_views_plugins
File
- ./
views_secondary_row.module, line 15
Code
function views_secondary_row_views_plugins() {
$plugins = array(
'style' => array(
'break_row' => array(
'title' => t('Table with secondary rows'),
'help' => t('Allows table rows to be breaken up into two.'),
'handler' => 'views_secondary_row_plugin_style_table',
'theme' => 'views_secondary_row_view_table',
'theme file' => 'views_secondary_row.module',
'uses row plugin' => FALSE,
'uses row class' => TRUE,
'uses fields' => TRUE,
'uses options' => TRUE,
'type' => 'normal',
),
),
);
return $plugins;
}