array( 'path' => drupal_get_path('module', 'views_tabs') .'/includes', ), 'handlers' => array( 'views_tabs_plugin_style' => array( 'parent' => 'views_plugin_style', ), ), ); } /** * Implementation of hook_views_style_plugins() */ function views_tabs_views_plugins() { $plugins = array( 'style' => array( 'tabs_fields' => array( 'title' => t('Tabs fields'), 'help' => t('Output fields to a tabs'), 'handler' => 'views_tabs_plugin_style', 'path' => drupal_get_path('module', 'views_tabs') . '/includes', 'theme' => 'views_view_fields', 'uses row plugin' => TRUE, 'uses options' => TRUE, 'uses grouping' => FALSE, 'type' => 'normal', ), ), ); return $plugins; }