Same name and namespace in other branches
  1. 7.x-3.x quicktabs.views.inc \quicktabs_views_plugins() 1 comment

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