Same name in other branches
- 7.x-3.x quicktabs.views.inc \quicktabs_views_plugins()
Implementation of hook_views_plugins().
File
-
./
quicktabs.views.inc, line 11
Code
function quicktabs_views_plugins() {
$path = drupal_get_path('module', 'quicktabs');
return array(
'style' => array(
'quicktabs' => array(
'title' => t('Quicktabs'),
'help' => t('Display view in Quicktabs.'),
'handler' => 'quicktabs_style_plugin',
'path' => "{$path}/includes",
'theme' => 'quicktabs_view',
'uses row plugin' => TRUE,
'uses options' => TRUE,
'type' => 'normal',
),
),
);
}