You are here

function views_flipped_table_views_plugins in Views Hacks 6

Implementation of hook_views_plugins().

File

views_flipped_table/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,
      ),
    ),
  );
}