function views_flipped_table_views_plugins in Views Flipped Table 6
Same name and namespace in other branches
- 7 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_plugin_style_table',
'parent' => 'table',
'uses row plugin' => FALSE,
'uses fields' => TRUE,
'uses options' => TRUE,
'type' => 'normal',
'theme' => 'views_flipped_table',
'even empty' => TRUE,
),
),
);
}