function views_flipped_table_views_plugins in Views Flipped Table 7
Same name and namespace in other branches
- 6 views_flipped_table.views.inc \views_flipped_table_views_plugins()
Implementation of hook_views_plugins().
File
- ./
views_flipped_table.views.inc, line 10 - views_flipped_table.views.inc Contains the flipped table style plugin, flipping rows and columns.
Code
function views_flipped_table_views_plugins() {
return array(
'style' => array(
'flipped' => array(
'title' => t('Flipped table'),
'help' => t('Displays a table with rows and columns flipped.'),
'handler' => 'views_flipped_table_plugin_style_flipped_table',
'parent' => 'table',
'uses row plugin' => FALSE,
'uses row class' => TRUE,
'uses fields' => TRUE,
'uses options' => TRUE,
'type' => 'normal',
'theme' => 'views_flipped_table',
),
),
);
}